", vname = name_override, speaker = speaker, command = 3, no_paygrade = TRUE)
+
+/// Used to fake the other side of our phone connection as a virtual user
+/datum/component/phone/virtual/proc/handle_virtual_speak(mob/speaker, message)
+ SIGNAL_HANDLER
+
+ if(!calling_phone)
+ return
+
+ handle_hear(message, null, speaker, TRUE)
+
+ log_say("TELEPHONE: [key_name(speaker)] on Phone '[phone_id]' to '[calling_phone.phone_id]' said '[message]'")
+
+ for(var/mob/dead/observer/cycled_observer in GLOB.player_list)
+ if(cycled_observer == get_user() || cycled_observer == calling_phone.get_user())
+ continue
+
+ if((cycled_observer.client) && (cycled_observer.client.prefs) && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO))
+ var/ghost_message = "Game Master on '[phone_id]' to '[calling_phone.phone_id]': \"[message]\""
+ cycled_observer.show_message(ghost_message, SHOW_MESSAGE_AUDIBLE)
+
+ calling_phone.handle_hear(message, null, speaker, TRUE)
+
+ return COMPONENT_OVERRIDE_DEAD_SPEAK
+
+/datum/component/phone/virtual/get_user()
+ return virtual_user.mob
+
+// TGUI section
+
+/datum/component/phone/virtual/ui_status(mob/user, datum/ui_state/state)
+ return UI_INTERACTIVE
+
+/datum/component/phone/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ if(.)
+ return
+
+ switch(action)
+ if("hang_up")
+ reset_call()
+ return TRUE
+ if("pick_up")
+ if(!calling_phone)
+ return
+ picked_up_call(ui.user)
+ calling_phone.other_phone_picked_up_call()
+ return TRUE
+
+/datum/component/phone/virtual/ui_data(mob/user)
+ . = ..()
+
+ .["virtual_phone"] = TRUE
+ .["being_called"] = calling_phone?.timeout_timer_id ? TRUE : FALSE
+ .["active_call"] = calling_phone ? TRUE : FALSE
+ .["calling_phone_id"] = "[calling_phone?.phone_id]"
diff --git a/code/datums/components/xeno/ai_behavior_overrides/attack_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/attack_override_behavior.dm
new file mode 100644
index 0000000000..30ec893db3
--- /dev/null
+++ b/code/datums/components/xeno/ai_behavior_overrides/attack_override_behavior.dm
@@ -0,0 +1,28 @@
+
+/datum/component/ai_behavior_override/attack
+ behavior_icon_state = "attack_order"
+
+/datum/component/ai_behavior_override/attack/check_behavior_validity(mob/living/carbon/xenomorph/checked_xeno, distance)
+ . = ..()
+ if(!.)
+ return
+
+ if(distance > 10)
+ return FALSE
+
+ return TRUE
+
+/datum/component/ai_behavior_override/attack/process_override_behavior(mob/living/carbon/xenomorph/processing_xeno, delta_time)
+ . = ..()
+ if(!.)
+ return
+
+ if(processing_xeno.current_target == parent)
+ return FALSE
+
+ processing_xeno.current_target = parent
+ processing_xeno.resting = FALSE
+ if(prob(5))
+ processing_xeno.emote("hiss")
+
+ return FALSE
diff --git a/code/datums/components/xeno/ai_behavior_overrides/base_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/base_override_behavior.dm
new file mode 100644
index 0000000000..a5bb0728de
--- /dev/null
+++ b/code/datums/components/xeno/ai_behavior_overrides/base_override_behavior.dm
@@ -0,0 +1,56 @@
+GLOBAL_LIST_EMPTY(all_ai_behavior_overrides)
+
+/datum/component/ai_behavior_override
+
+ /// Icon file for the behavior attached to parent as game masters will see it
+ var/behavior_icon = 'icons/effects/game_master_xeno_behaviors.dmi'
+
+ /// Specific icon state for the behavior attached to parent as game masters will see it
+ var/behavior_icon_state = "should_not_see_this"
+
+ /// The actual image holder that sits on parent for game masters
+ var/image/behavior_image
+
+ /// The xenos currently handling this task
+ var/currently_assigned
+
+ /// How many xenos we want assigned to this task at max
+ var/max_assigned = 3
+
+/datum/component/ai_behavior_override/Initialize(...)
+ . = ..()
+
+ GLOB.all_ai_behavior_overrides += src
+
+ behavior_image = new(behavior_icon, parent, behavior_icon_state, layer = ABOVE_FLY_LAYER)
+
+ for(var/client/game_master in GLOB.game_masters)
+ game_master.images |= behavior_image
+
+ currently_assigned = list()
+
+/datum/component/ai_behavior_override/Destroy(force, silent, ...)
+ GLOB.all_ai_behavior_overrides -= src
+
+ for(var/client/game_master in GLOB.game_masters)
+ game_master.images -= behavior_image
+
+ QDEL_NULL(behavior_image)
+ currently_assigned = null
+
+ . = ..()
+
+/// Override this to check if we want our behavior to be valid for the checked_xeno, passes the common factor of "distance" which is the distance between the checked_xeno and src parent
+/datum/component/ai_behavior_override/proc/check_behavior_validity(mob/living/carbon/xenomorph/checked_xeno, distance)
+ if(length(currently_assigned) >= max_assigned && !(checked_xeno in currently_assigned))
+ return FALSE
+
+ return TRUE
+
+/// Processes what we want this behavior to do, return FALSE if we want to continue in the process_ai() proc or TRUE if we want to handle everything and have process_ai() return
+/datum/component/ai_behavior_override/proc/process_override_behavior(mob/living/carbon/xenomorph/processing_xeno, delta_time)
+ SHOULD_NOT_SLEEP(TRUE)
+
+ currently_assigned |= processing_xeno
+
+ return TRUE
diff --git a/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm
new file mode 100644
index 0000000000..3651ca25ed
--- /dev/null
+++ b/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm
@@ -0,0 +1,75 @@
+
+/datum/component/ai_behavior_override/capture
+ behavior_icon_state = "capture_order"
+
+ max_assigned = 1
+
+/datum/component/ai_behavior_override/capture/Initialize(...)
+ . = ..()
+
+ if(!istype(parent, /mob))
+ return COMPONENT_INCOMPATIBLE
+
+ if(isxeno(parent))
+ return COMPONENT_INCOMPATIBLE
+
+/datum/component/ai_behavior_override/capture/check_behavior_validity(mob/living/carbon/xenomorph/checked_xeno, distance)
+ . = ..()
+ if(!.)
+ return
+
+ var/mob/parent_mob = parent
+
+ var/stat = parent_mob.stat
+ var/mob/pulledby = parent_mob.pulledby
+
+ if(stat == DEAD)
+ qdel(src)
+ return FALSE
+
+ if(HAS_TRAIT(parent, TRAIT_NESTED))
+ qdel(src)
+ return FALSE
+
+ if(!length(GLOB.ai_hives))
+ for(var/client/game_master in GLOB.game_masters)
+ to_chat(game_master, SPAN_XENOBOLDNOTICE("Capture behavior requires a valid hive placed"))
+
+ qdel(src)
+ return FALSE
+
+ if(distance > 10)
+ return FALSE
+
+ if(stat == CONSCIOUS)
+ return FALSE
+
+ if(isxeno(pulledby) && pulledby != checked_xeno)
+ return FALSE
+
+ return TRUE
+
+/datum/component/ai_behavior_override/capture/process_override_behavior(mob/living/carbon/xenomorph/processing_xeno, delta_time)
+ . = ..()
+ if(!.)
+ return
+
+ processing_xeno.current_target = parent
+ processing_xeno.resting = FALSE
+
+ if(processing_xeno.get_active_hand())
+ processing_xeno.swap_hand()
+
+ var/datum/xeno_ai_movement/processing_xeno_movement = processing_xeno.ai_movement_handler
+ if(processing_xeno.pulling == parent)
+ processing_xeno_movement.ai_move_hive(delta_time)
+ return TRUE
+
+ var/atom/movable/target = processing_xeno.current_target
+ if(get_dist(processing_xeno, target) <= 1)
+ INVOKE_ASYNC(processing_xeno, TYPE_PROC_REF(/mob, start_pulling), target)
+ processing_xeno.face_atom(target)
+ processing_xeno.swap_hand()
+
+ processing_xeno.ai_move_target(delta_time)
+ return TRUE
diff --git a/code/datums/components/xeno/ai_behavior_overrides/hive_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/hive_override_behavior.dm
new file mode 100644
index 0000000000..3fb5923a71
--- /dev/null
+++ b/code/datums/components/xeno/ai_behavior_overrides/hive_override_behavior.dm
@@ -0,0 +1,34 @@
+
+// Just try not to think about this too much.
+
+
+GLOBAL_LIST_EMPTY(ai_hives)
+
+/datum/component/ai_behavior_override/hive
+ behavior_icon_state = "core"
+
+ max_assigned = 0
+
+ var/hive_radius = 7
+
+/datum/component/ai_behavior_override/hive/Initialize(...)
+ . = ..()
+
+ if(!istype(parent, /turf/open) && !istype(parent, /obj/effect/alien))
+ return COMPONENT_INCOMPATIBLE
+
+ GLOB.ai_hives += src
+
+ if(!istype(parent, /obj/effect/alien))
+ new /obj/effect/alien/weeds/node(get_turf(parent))
+
+/datum/component/ai_behavior_override/hive/Destroy(force, silent, ...)
+ GLOB.ai_hives -= src
+
+ . = ..()
+
+/datum/component/ai_behavior_override/hive/check_behavior_validity(mob/living/carbon/xenomorph/checked_xeno, distance)
+ return FALSE
+
+/datum/component/ai_behavior_override/hive/process_override_behavior(mob/living/carbon/xenomorph/processing_xeno, delta_time)
+ return FALSE
diff --git a/code/datums/emergency_calls/cryo_marines.dm b/code/datums/emergency_calls/cryo_marines.dm
index 7ed61852e9..19f73a9843 100644
--- a/code/datums/emergency_calls/cryo_marines.dm
+++ b/code/datums/emergency_calls/cryo_marines.dm
@@ -13,7 +13,7 @@
var/leaders = 0
spawn_max_amount = TRUE
-/datum/emergency_call/cryo_squad/spawn_candidates(announce, override_spawn_loc, announce_dispatch_message)
+/datum/emergency_call/cryo_squad/spawn_candidates(quiet_launch, announce_incoming, override_spawn_loc)
var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo]
leaders = cryo_squad.num_leaders
. = ..()
diff --git a/code/datums/emergency_calls/cryo_marines_heavy.dm b/code/datums/emergency_calls/cryo_marines_heavy.dm
index 70ce524435..f4fe3c9f2a 100644
--- a/code/datums/emergency_calls/cryo_marines_heavy.dm
+++ b/code/datums/emergency_calls/cryo_marines_heavy.dm
@@ -16,7 +16,7 @@
var/leaders = 0
-/datum/emergency_call/cryo_squad_equipped/spawn_candidates(announce, override_spawn_loc, announce_dispatch_message)
+/datum/emergency_call/cryo_squad_equipped/spawn_candidates(quiet_launch, announce_incoming, override_spawn_loc)
var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo]
leaders = cryo_squad.num_leaders
. = ..()
diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm
index 6533086d98..4c3dfbbfac 100644
--- a/code/datums/emergency_calls/emergency_call.dm
+++ b/code/datums/emergency_calls/emergency_call.dm
@@ -91,12 +91,12 @@
else
return chosen_call
-/datum/game_mode/proc/get_specific_call(call_name, quiet_launch = FALSE, announce = TRUE, is_emergency = TRUE, info = "", announce_dispatch_message = TRUE)
+/datum/game_mode/proc/get_specific_call(call_name, quiet_launch = FALSE, announce_incoming = TRUE, info = "")
for(var/datum/emergency_call/E in all_calls) //Loop through all potential candidates
if(E.name == call_name)
var/datum/emergency_call/em_call = new E.type()
em_call.objective_info = info
- em_call.activate(quiet_launch, announce, is_emergency, announce_dispatch_message)
+ em_call.activate(quiet_launch, announce_incoming)
return
error("get_specific_call could not find emergency call '[call_name]'")
return
@@ -168,7 +168,7 @@
return
var/deathtime = world.time - usr.timeofdeath
- if(deathtime < 1 MINUTES) //Nice try, ghosting right after the announcement
+ if(deathtime < 30 SECONDS) //Nice try, ghosting right after the announcement
if(SSmapping.configs[GROUND_MAP].map_name != MAP_WHISKEY_OUTPOST) // people ghost so often on whiskey outpost.
to_chat(src, SPAN_WARNING("You ghosted too recently."))
return
@@ -192,7 +192,7 @@
else
to_chat(src, SPAN_WARNING("You did not get enlisted in the response team. Better luck next time!"))
-/datum/emergency_call/proc/activate(quiet_launch = FALSE, announce = TRUE, turf/override_spawn_loc, announce_dispatch_message = TRUE)
+/datum/emergency_call/proc/activate(quiet_launch = FALSE, announce_incoming = TRUE, turf/override_spawn_loc)
set waitfor = 0
if(!SSticker.mode) //Something horribly wrong with the gamemode ticker
return
@@ -205,9 +205,9 @@
if(!quiet_launch)
marine_announcement("A distress beacon has been launched from the [MAIN_SHIP_NAME].", "Priority Alert", 'sound/AI/distressbeacon.ogg', logging = ARES_LOG_SECURITY)
- addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/emergency_call, spawn_candidates), quiet_launch, announce, override_spawn_loc, announce_dispatch_message), 30 SECONDS)
+ addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/emergency_call, spawn_candidates), quiet_launch, announce_incoming, override_spawn_loc), 30 SECONDS)
-/datum/emergency_call/proc/spawn_candidates(quiet_launch = FALSE, announce = TRUE, override_spawn_loc, announce_dispatch_message = TRUE)
+/datum/emergency_call/proc/spawn_candidates(quiet_launch = FALSE, announce_incoming = TRUE, override_spawn_loc)
if(SSticker.mode)
SSticker.mode.picked_calls -= src
@@ -248,7 +248,7 @@
if(I.current)
to_chat(I.current, SPAN_WARNING("You didn't get selected to join the distress team. Better luck next time!"))
- if(announce)
+ if(announce_incoming)
marine_announcement(dispatch_message, "Distress Beacon", 'sound/AI/distressreceived.ogg', logging = ARES_LOG_SECURITY) //Announcement that the Distress Beacon has been answered, does not hint towards the chosen ERT
message_admins("Distress beacon: [src.name] finalized, setting up candidates.")
@@ -304,7 +304,7 @@
create_member(null, override_spawn_loc)
candidates = list()
- if(arrival_message && announce)
+ if(arrival_message && announce_incoming)
marine_announcement(arrival_message, "Intercepted Tranmission:")
/datum/emergency_call/proc/add_candidate(mob/M)
diff --git a/code/datums/factions/uscm.dm b/code/datums/factions/uscm.dm
index 654af406d4..fd97ea4ae3 100644
--- a/code/datums/factions/uscm.dm
+++ b/code/datums/factions/uscm.dm
@@ -75,7 +75,7 @@
marine_rk = "co"
border_rk = "command"
if(JOB_SO)
- marine_rk = "so"
+ marine_rk = "wo_co"
border_rk = "command"
if(JOB_AUXILIARY_OFFICER)
marine_rk = "aso"
diff --git a/code/datums/keybinding/client.dm b/code/datums/keybinding/client.dm
index a5baf09a13..7522878822 100644
--- a/code/datums/keybinding/client.dm
+++ b/code/datums/keybinding/client.dm
@@ -4,8 +4,8 @@
/datum/keybinding/client/admin_help
- hotkey_keys = list("F1")
- classic_keys = list("F1")
+ hotkey_keys = list("Unbound")
+ classic_keys = list("Unbound")
name = "admin_help"
full_name = "Admin Help"
description = "Ask an admin for help."
diff --git a/code/datums/langchat/langchat.dm b/code/datums/langchat/langchat.dm
index 3f00c26b6d..83b9be0ac0 100644
--- a/code/datums/langchat/langchat.dm
+++ b/code/datums/langchat/langchat.dm
@@ -47,6 +47,13 @@
M.client.images -= langchat_image
langchat_listeners = null
+/atom/proc/langchat_set_x_offset()
+ langchat_image.maptext_x = world.icon_size / 2 - langchat_image.maptext_width / 2
+/atom/movable/langchat_set_x_offset()
+ langchat_image.maptext_x = bound_width / 2 - langchat_image.maptext_width / 2
+/mob/langchat_set_x_offset()
+ langchat_image.maptext_x = icon_size / 2 - langchat_image.maptext_width / 2
+
///Creates the image if one does not exist, resets settings that are modified by speech procs.
/atom/proc/langchat_make_image(override_color = null)
if(!langchat_image)
@@ -56,8 +63,8 @@
langchat_image.appearance_flags = NO_CLIENT_COLOR|KEEP_APART|RESET_COLOR|RESET_TRANSFORM
langchat_image.maptext_y = langchat_height
langchat_image.maptext_height = 64
- langchat_image.maptext_x = - world.icon_size - get_pixel_position_x(src, TRUE)
langchat_image.maptext_y -= LANGCHAT_MESSAGE_POP_Y_SINK
+ langchat_set_x_offset()
langchat_image.pixel_y = 0
langchat_image.alpha = 0
@@ -102,7 +109,7 @@
langchat_image.maptext = text_to_display
langchat_image.maptext_width = LANGCHAT_WIDTH
- langchat_image.maptext_x = - world.icon_size - get_pixel_position_x(src, TRUE)
+ langchat_set_x_offset()
langchat_listeners = listeners
for(var/mob/M in langchat_listeners)
@@ -149,7 +156,7 @@
langchat_image.maptext = text_to_display
langchat_image.maptext_width = LANGCHAT_WIDTH * 2
- langchat_image.maptext_x = - world.icon_size - get_pixel_position_x(src, TRUE) - LANGCHAT_WIDTH / 2
+ langchat_set_x_offset()
langchat_listeners = listeners
for(var/mob/M in langchat_listeners)
diff --git a/code/datums/looping_sounds/item_sounds.dm b/code/datums/looping_sounds/item_sounds.dm
index a2aa2fb5b6..5382ad2f42 100644
--- a/code/datums/looping_sounds/item_sounds.dm
+++ b/code/datums/looping_sounds/item_sounds.dm
@@ -2,3 +2,11 @@
mid_sounds = list('sound/items/taperecorder/taperecorder_hiss_mid.ogg' = 1)
start_sound = list('sound/items/taperecorder/taperecorder_hiss_start.ogg' = 1)
volume = 10
+
+/datum/looping_sound/phone_ringing
+ start_sound = list('sound/machines/telephone/telephone_ring.ogg' = 1)
+ mid_sounds = list('sound/machines/telephone/telephone_ring.ogg' = 1)
+ volume = 25
+ extra_range = 14
+ mid_length = (3 SECONDS)
+ max_loops = 10
diff --git a/code/datums/quadtree.dm b/code/datums/quadtree.dm
index 68f45b855d..bf5cd8000b 100644
--- a/code/datums/quadtree.dm
+++ b/code/datums/quadtree.dm
@@ -10,14 +10,14 @@
var/z_level
/// Don't divide further when truthy
- var/final
+ var/final_divide = FALSE
/datum/quadtree/New(datum/shape/rectangle/rect, z)
. = ..()
boundary = rect
z_level = z
if(boundary.width <= QUADTREE_BOUNDARY_MINIMUM_WIDTH || boundary.height <= QUADTREE_BOUNDARY_MINIMUM_HEIGHT)
- final = TRUE
+ final_divide = TRUE
// By design i guess, discarding branch discards rest with BYOND soft-GCing
// There should never be anything else but SSquadtree referencing quadtrees,
@@ -103,7 +103,7 @@
player_coords = list(p_coords)
return TRUE
- else if(!final && player_coords.len >= QUADTREE_CAPACITY)
+ else if(!final_divide && player_coords.len >= QUADTREE_CAPACITY)
if(!is_divided)
subdivide()
if(nw_branch.insert_player(p_coords))
@@ -139,7 +139,8 @@
if(range.contains(P))
if(flags & QTREE_SCAN_MOBS)
found_players.Add(P.player)
- return
+ continue
if(P.player.client)
found_players.Add(P.player.client)
+ continue
diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm
index eb1fd23419..98bcf29675 100644
--- a/code/datums/shuttles.dm
+++ b/code/datums/shuttles.dm
@@ -100,6 +100,18 @@
if(movement_force)
M.movement_force = movement_force.Copy()
+
/datum/map_template/shuttle/vehicle
shuttle_id = MOBILE_SHUTTLE_VEHICLE_ELEVATOR
name = "Vehicle Elevator"
+
+/datum/map_template/shuttle/trijent_elevator
+ name = "Trijent Elevator"
+ shuttle_id = MOBILE_TRIJENT_ELEVATOR
+ var/elevator_network
+
+/datum/map_template/shuttle/trijent_elevator/A
+ elevator_network = "A"
+
+/datum/map_template/shuttle/trijent_elevator/B
+ elevator_network = "B"
diff --git a/code/datums/statistics/entities/death_stats.dm b/code/datums/statistics/entities/death_stats.dm
index 1753536026..f0055ed871 100644
--- a/code/datums/statistics/entities/death_stats.dm
+++ b/code/datums/statistics/entities/death_stats.dm
@@ -87,6 +87,10 @@
if(!mind || statistic_exempt)
return
+ var/area/area = get_area(death_loc)
+ handle_observer_message(cause_data, cause_mob, death_loc, area)
+
+ // Perform logging above before get_player_from_key to avoid delays
var/datum/entity/statistic/death/new_death = DB_ENTITY(/datum/entity/statistic/death)
var/datum/entity/player/player_entity = get_player_from_key(mind.ckey)
if(player_entity)
@@ -98,11 +102,8 @@
new_death.role_name = get_role_name()
new_death.mob_name = real_name
new_death.faction_name = faction
-
new_death.is_xeno = FALSE
-
- var/area/A = get_area(death_loc)
- new_death.area_name = A.name
+ new_death.area_name = area.name
new_death.cause_name = cause_data?.cause_name
var/datum/entity/player/cause_player = get_player_from_key(cause_data?.ckey)
@@ -132,8 +133,6 @@
new_death.total_damage_taken = life_damage_taken_total
new_death.total_revives_done = life_revives_total
- handle_observer_message(cause_data, cause_mob, death_loc, A)
-
if(round_statistics)
round_statistics.track_death(new_death)
diff --git a/code/datums/weather/weather_map_holders/shivas_snowball.dm b/code/datums/weather/weather_map_holders/shivas_snowball.dm
new file mode 100644
index 0000000000..501171a4e6
--- /dev/null
+++ b/code/datums/weather/weather_map_holders/shivas_snowball.dm
@@ -0,0 +1,19 @@
+//// Shivas's map holder
+
+/datum/weather_ss_map_holder/shivas_snowball
+ name = "Shivas Snowball Map Holder"
+
+ min_time_between_events = 20 MINUTES
+ no_weather_turf_icon_state = "strata_clearsky"
+
+ potential_weather_events = list(
+ /datum/weather_event/snow,
+ )
+
+/datum/weather_ss_map_holder/shivas_snowball/should_affect_area(area/A)
+ return !CEILING_IS_PROTECTED(A.ceiling, CEILING_GLASS)
+
+/datum/weather_ss_map_holder/shivas_snowball/should_start_event()
+ if (prob(PROB_WEATHER_SHIVAS_SNOWBALL))
+ return TRUE
+ return FALSE
diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm
index 6200444949..21ff397665 100644
--- a/code/game/area/almayer.dm
+++ b/code/game/area/almayer.dm
@@ -9,7 +9,6 @@
powernet_name = "almayer"
sound_environment = SOUND_ENVIRONMENT_ROOM
soundscape_interval = 30
- //soundscape_playlist = list('sound/effects/xylophone1.ogg', 'sound/effects/xylophone2.ogg', 'sound/effects/xylophone3.ogg')
ambience_exterior = AMBIENCE_ALMAYER
ceiling_muffle = FALSE
@@ -64,7 +63,6 @@
fake_zlevel = 1 // upperdeck
soundscape_playlist = SCAPE_PL_CIC
soundscape_interval = 50
- flags_area = AREA_NOTUNNEL
/area/almayer/command/cichallway
name = "\improper Secure Command Hallway"
@@ -77,10 +75,6 @@
fake_zlevel = 1 // upperdeck
soundscape_playlist = SCAPE_PL_ARES
soundscape_interval = 120
- flags_area = AREA_NOTUNNEL|AREA_UNWEEDABLE
- can_build_special = FALSE
- is_resin_allowed = FALSE
- resin_construction_allowed = FALSE
/area/almayer/command/securestorage
name = "\improper Secure Storage"
@@ -96,13 +90,11 @@
name = "\improper Telecommunications"
icon_state = "tcomms"
fake_zlevel = 1 // upperdeck
- flags_area = AREA_NOTUNNEL
/area/almayer/command/self_destruct
name = "\improper Self-Destruct Core Room"
icon_state = "selfdestruct"
fake_zlevel = 1 // upperdeck
- flags_area = AREA_NOTUNNEL
/area/almayer/command/corporateliason
name = "\improper Corporate Liaison Office"
@@ -548,11 +540,6 @@
icon_state = "livingspace"
fake_zlevel = 1 // upperdeck
-/area/almayer/living/platoon_commander_rooms
- name = "\improper Platoon Commander's Rooms"
- icon_state = "livingspace"
- fake_zlevel = 1 // upperdeck
-
/area/almayer/living/chapel
name = "\improper Almayer Chapel"
icon_state = "officerrnr"
@@ -666,17 +653,6 @@
icon_state = "alpha"
fake_zlevel = 2 // lowerdeck
-/area/almayer/squads/alpha/platoon_sergeant
- name = "\improper Alpha Platoon Sergeant Office"
-
-/area/almayer/squads/alpha/squad_one
- name = "\improper Alpha Squad One Preparation"
- icon_state = "charlie"
-
-/area/almayer/squads/alpha/squad_two
- name = "\improper Alpha Squad Two Preparation"
- icon_state = "delta"
-
/area/almayer/squads/bravo
name = "\improper Squad Bravo Preparation"
icon_state = "bravo"
@@ -749,19 +725,16 @@
/area/almayer/ert_port
name = "\improper ERT Docking Port"
icon_state = "lifeboat"
- flags_area = AREA_NOTUNNEL
/area/space/almayer/lifeboat_dock
name = "\improper Lifeboat Docking Port"
icon_state = "lifeboat"
fake_zlevel = 1 // upperdeck
- flags_area = AREA_NOTUNNEL
/area/almayer/evacuation
icon = 'icons/turf/areas.dmi'
icon_state = "shuttle2"
requires_power = 0
- flags_area = AREA_NOTUNNEL
//Placeholder.
/area/almayer/evacuation/pod1
diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm
index c81da5556e..a1d8b6d919 100644
--- a/code/game/area/areas.dm
+++ b/code/game/area/areas.dm
@@ -40,7 +40,7 @@
var/gas_type = GAS_TYPE_AIR
var/temperature = T20C
var/pressure = ONE_ATMOSPHERE
- var/can_build_special = FALSE
+ var/can_build_special = TRUE
var/is_resin_allowed = TRUE // can xenos weed, place resin holes or dig tunnels at said areas
var/is_landing_zone = FALSE // primarily used to prevent mortars from hitting this location
var/resin_construction_allowed = TRUE // Allow construction of resin walls, and other special
diff --git a/code/game/area/areas_event.dm b/code/game/area/areas_event.dm
index c43dae3a65..8fc66afd4d 100644
--- a/code/game/area/areas_event.dm
+++ b/code/game/area/areas_event.dm
@@ -42,7 +42,7 @@ structure:
icon_state = "event"
//no bioscan and no tunnels allowed
- flags_area = AREA_AVOID_BIOSCAN|AREA_NOTUNNEL
+ flags_area = AREA_AVOID_BIOSCAN
//events are not part of regular gameplay, therefore, no statistics
statistic_exempt = TRUE
diff --git a/code/game/area/golden_arrow.dm b/code/game/area/golden_arrow.dm
new file mode 100644
index 0000000000..11656d7da4
--- /dev/null
+++ b/code/game/area/golden_arrow.dm
@@ -0,0 +1,67 @@
+/area/golden_arrow
+ icon = 'icons/turf/area_almayer.dmi'
+ icon_state = "almayer"
+ ceiling = CEILING_METAL
+ powernet_name = "golden_arrow"
+ sound_environment = SOUND_ENVIRONMENT_ROOM
+ soundscape_interval = 30
+ ambience_exterior = AMBIENCE_ALMAYER
+ ceiling_muffle = FALSE
+
+/area/golden_arrow/hangar
+ name = "\improper Hangar"
+ icon_state = "hangar"
+ soundscape_playlist = SCAPE_PL_HANGAR
+ soundscape_interval = 50
+
+/area/golden_arrow/platoon_commander_rooms
+ name = "\improper Platoon Commander's Rooms"
+ icon_state = "livingspace"
+
+/area/golden_arrow/medical
+ name = "\improper Medical"
+ icon_state = "medical"
+
+/area/golden_arrow/supply
+ name = "\improper Supply"
+ icon_state = "req"
+
+/area/golden_arrow/engineering
+ name = "\improper Engineering"
+ icon_state = "upperengineering"
+
+/area/golden_arrow/briefing
+ name = "\improper Briefing Area"
+ icon_state = "briefing"
+
+/area/golden_arrow/dorms
+ name = "\improper Dorms"
+ icon_state = "gruntrnr"
+
+/area/golden_arrow/canteen
+ name = "\improper Canteen"
+ icon_state = "food"
+
+/area/golden_arrow/cryo_cells
+ name = "\improper Cryo Cells"
+ icon_state = "cryo"
+
+/area/golden_arrow/prep_hallway
+ name = "\improper Prep Hallway"
+ icon_state = "port"
+
+/area/golden_arrow/platoon_sergeant
+ name = "\improper Platoon Sergeant Office"
+ icon_state = "alpha"
+
+/area/golden_arrow/squad_one
+ name = "\improper Squad One Prep"
+ icon_state = "charlie"
+
+/area/golden_arrow/squad_two
+ name = "\improper Squad Two Prep"
+ icon_state = "delta"
+
+/area/golden_arrow/synthcloset
+ name = "\improper Synthetic Storage Closet"
+ icon_state = "livingspace"
diff --git a/code/game/area/shiva.dm b/code/game/area/shiva.dm
index e4939cd67e..9cfaffb7dc 100644
--- a/code/game/area/shiva.dm
+++ b/code/game/area/shiva.dm
@@ -159,7 +159,7 @@
/area/shiva/interior/caves
name = "Shiva's Snowball - Caves"
icon_state = "caves0"
- ceiling = CEILING_UNDERGROUND_METAL_BLOCK_CAS
+ ceiling = CEILING_UNDERGROUND_BLOCK_CAS
/area/shiva/interior/caves/right_spiders
name = "Shiva's Snowball - Forgotten Passage"
diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm
index 85e381972d..62cea6b52d 100644
--- a/code/game/gamemodes/colonialmarines/colonialmarines.dm
+++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm
@@ -262,7 +262,7 @@
continue
if(groundside_humans > (groundside_xenos * GROUNDSIDE_XENO_MULTIPLIER))
- SSticker.mode.get_specific_call("Xenomorphs Groundside (Forsaken)", TRUE, FALSE, FALSE, announce_dispatch_message = FALSE)
+ SSticker.mode.get_specific_call("Xenomorphs Groundside (Forsaken)", TRUE, FALSE)
TIMER_COOLDOWN_START(src, COOLDOWN_HIJACK_GROUND_CHECK, 1 MINUTES)
diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm
index c36e21b6e7..aeffceee1d 100644
--- a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm
+++ b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm
@@ -193,7 +193,7 @@
announce_xeno_wave(wave)
if(xeno_wave == 7)
//Wave when Marines get reinforcements!
- get_specific_call("Marine Reinforcements (Squad)", FALSE, TRUE, FALSE)
+ get_specific_call("Marine Reinforcements (Squad)", FALSE, TRUE)
xeno_wave = min(xeno_wave + 1, WO_MAX_WAVE)
diff --git a/code/game/jobs/job/civilians/support/doctor.dm b/code/game/jobs/job/civilians/support/doctor.dm
index 9e0853d96e..ff1b2146be 100644
--- a/code/game/jobs/job/civilians/support/doctor.dm
+++ b/code/game/jobs/job/civilians/support/doctor.dm
@@ -59,3 +59,6 @@ AddTimelock(/datum/job/civilian/doctor, list(
name = JOB_DOCTOR
icon_state = "doc_spawn"
job = /datum/job/civilian/doctor
+
+#undef DOCTOR_VARIANT
+#undef SURGEON_VARIANT
diff --git a/code/game/jobs/job/command/cic/staffofficer.dm b/code/game/jobs/job/command/cic/staffofficer.dm
index 2f34fcd5fe..54ff400763 100644
--- a/code/game/jobs/job/command/cic/staffofficer.dm
+++ b/code/game/jobs/job/command/cic/staffofficer.dm
@@ -1,3 +1,7 @@
+
+#define SECOND_LT_VARIANT "Second Lieutenant"
+#define FIRST_LT_VARIANT "First Lieutenant"
+
/datum/job/command/bridge
title = JOB_SO
total_positions = 4
@@ -8,6 +12,8 @@
gear_preset = /datum/equipment_preset/uscm_ship/so
entry_message_body = "Your job is to monitor the Marines, man the CIC, and listen to your superior officers. You are in charge of logistics and the overwatch system. You are also in line to take command after other eligible superior commissioned officers."
+ job_options = list(FIRST_LT_VARIANT = "1stLt", SECOND_LT_VARIANT = "2ndLt")
+
/datum/job/command/bridge/set_spawn_positions(count)
spawn_positions = so_slot_formula(count)
@@ -26,6 +32,12 @@
/datum/job/command/bridge/generate_entry_message(mob/living/carbon/human/H)
return ..()
+/datum/job/command/bridge/handle_job_options(option)
+ if(option != FIRST_LT_VARIANT)
+ gear_preset = /datum/equipment_preset/uscm_ship/so/lesser_rank
+ else
+ gear_preset = /datum/equipment_preset/uscm_ship/so
+
AddTimelock(/datum/job/command/bridge, list(
JOB_SQUAD_LEADER = 1 HOURS,
JOB_HUMAN_ROLES = 15 HOURS
@@ -45,3 +57,6 @@ AddTimelock(/datum/job/command/bridge, list(
/datum/job/command/bridge/ai/get_total_positions(latejoin = 0)
return latejoin ? total_positions : spawn_positions
+
+#undef SECOND_LT_VARIANT
+#undef FIRST_LT_VARIANT
diff --git a/code/game/jobs/job/marine/squad/leader.dm b/code/game/jobs/job/marine/squad/leader.dm
index fea71ab4ec..869336c561 100644
--- a/code/game/jobs/job/marine/squad/leader.dm
+++ b/code/game/jobs/job/marine/squad/leader.dm
@@ -1,3 +1,7 @@
+
+#define SSGT_VARIANT "Staff Sergeant"
+#define GYSGT_VARIANT "Gunnery Sergeant"
+
/datum/job/marine/leader
title = JOB_SQUAD_LEADER
total_positions = 4
@@ -7,6 +11,14 @@
gear_preset = /datum/equipment_preset/uscm/leader
entry_message_body = "You are responsible for the men and women of your squad. Make sure they are on task, working together, and communicating. You are also in charge of communicating with command and letting them know about the situation first hand. Keep out of harm's way."
+ job_options = list(GYSGT_VARIANT = "GYSGT", SSGT_VARIANT = "SSGT")
+
+/datum/job/marine/leader/handle_job_options(option)
+ if(option != GYSGT_VARIANT)
+ gear_preset = /datum/equipment_preset/uscm/leader/lesser_rank
+ else
+ gear_preset = /datum/equipment_preset/uscm/leader
+
/datum/job/marine/leader/whiskey
title = JOB_WO_SQUAD_LEADER
flags_startup_parameters = ROLE_ADD_TO_SQUAD
@@ -40,3 +52,6 @@ AddTimelock(/datum/job/marine/leader, list(
/datum/job/marine/leader/ai
total_positions = 1
spawn_positions = 1
+
+#undef SSGT_VARIANT
+#undef GYSGT_VARIANT
diff --git a/code/game/jobs/job/marine/squad/medic.dm b/code/game/jobs/job/marine/squad/medic.dm
index c8dff4a943..cbd44bba33 100644
--- a/code/game/jobs/job/marine/squad/medic.dm
+++ b/code/game/jobs/job/marine/squad/medic.dm
@@ -1,3 +1,7 @@
+
+#define LCPL_VARIANT "Lance Corporal"
+#define CPL_VARIANT "Corporal"
+
/datum/job/marine/medic
title = JOB_SQUAD_MEDIC
total_positions = 16
@@ -7,6 +11,8 @@
gear_preset = /datum/equipment_preset/uscm/medic
entry_message_body = "You tend the wounds of your squad mates and make sure they are healthy and active. You may not be a fully-fledged doctor, but you stand between life and death when it matters."
+ job_options = list(CPL_VARIANT = "CPL", LCPL_VARIANT = "LCPL")
+
/datum/job/marine/medic/set_spawn_positions(count)
for(var/datum/squad/sq in RoleAuthority.squads)
if(sq)
@@ -27,6 +33,12 @@
return (slots*4)
+/datum/job/marine/medic/handle_job_options(option)
+ if(option != CPL_VARIANT)
+ gear_preset = /datum/equipment_preset/uscm/medic/lesser_rank
+ else
+ gear_preset = /datum/equipment_preset/uscm/medic
+
/datum/job/marine/medic/whiskey
title = JOB_WO_SQUAD_MEDIC
flags_startup_parameters = ROLE_ADD_TO_SQUAD
@@ -67,3 +79,6 @@ AddTimelock(/datum/job/marine/medic, list(
/datum/job/marine/medic/ai/get_total_positions(latejoin=0)
return latejoin ? total_positions : spawn_positions
+
+#undef LCPL_VARIANT
+#undef CPL_VARIANT
diff --git a/code/game/jobs/job/marine/squad/smartgunner.dm b/code/game/jobs/job/marine/squad/smartgunner.dm
index 85ce6750fb..4ce8e9a912 100644
--- a/code/game/jobs/job/marine/squad/smartgunner.dm
+++ b/code/game/jobs/job/marine/squad/smartgunner.dm
@@ -1,3 +1,7 @@
+
+#define LCPL_VARIANT "Lance Corporal"
+#define CPL_VARIANT "Corporal"
+
/datum/job/marine/smartgunner
title = JOB_SQUAD_SMARTGUN
total_positions = 4
@@ -8,6 +12,8 @@
gear_preset = /datum/equipment_preset/uscm/sg
entry_message_body = "You are the smartgunner. Your task is to provide heavy weapons support."
+ job_options = list(CPL_VARIANT = "CPL", LCPL_VARIANT = "LCPL")
+
/datum/job/marine/smartgunner/set_spawn_positions(count)
spawn_positions = sg_slot_formula(count)
@@ -23,6 +29,12 @@
total_positions_so_far = positions
return positions
+/datum/job/marine/smartgunner/handle_job_options(option)
+ if(option != CPL_VARIANT)
+ gear_preset = /datum/equipment_preset/uscm/sg/lesser_rank
+ else
+ gear_preset = /datum/equipment_preset/uscm/sg
+
/datum/job/marine/smartgunner/whiskey
title = JOB_WO_SQUAD_SMARTGUNNER
flags_startup_parameters = ROLE_ADD_TO_SQUAD
@@ -62,3 +74,6 @@ AddTimelock(/datum/job/marine/smartgunner, list(
/datum/job/marine/smartgunner/ai/get_total_positions(latejoin = 0)
return latejoin ? total_positions : spawn_positions
+
+#undef LCPL_VARIANT
+#undef CPL_VARIANT
diff --git a/code/game/jobs/job/marine/squad/standard.dm b/code/game/jobs/job/marine/squad/standard.dm
index 9450b11006..f0b962f1a7 100644
--- a/code/game/jobs/job/marine/squad/standard.dm
+++ b/code/game/jobs/job/marine/squad/standard.dm
@@ -1,5 +1,8 @@
#define STANDARD_MARINE_TO_TOTAL_SPAWN_RATIO 0.4
+#define PVT_VARIANT "Private"
+#define PFC_VARIANT "Private First Class"
+
/datum/job/marine/standard
title = JOB_SQUAD_MARINE
total_positions = -1
@@ -8,9 +11,17 @@
gear_preset = /datum/equipment_preset/uscm/pfc
entry_message_body = "You are a rank-and-file Marine of the USCM, and that is your strength. What you lack alone, you gain standing shoulder to shoulder with the men and women of the corps. Ooh-rah!"
+ job_options = list(PFC_VARIANT = "PFC", PVT_VARIANT = "PVT")
+
/datum/job/marine/standard/set_spawn_positions(count)
spawn_positions = max((round(count * STANDARD_MARINE_TO_TOTAL_SPAWN_RATIO)), 8)
+/datum/job/marine/standard/handle_job_options(option)
+ if(option != PFC_VARIANT)
+ gear_preset = /datum/equipment_preset/uscm/pfc/lesser_rank
+ else
+ gear_preset = /datum/equipment_preset/uscm/pfc
+
/datum/job/marine/standard/whiskey
title = JOB_WO_SQUAD_MARINE
flags_startup_parameters = ROLE_ADD_TO_SQUAD
@@ -43,3 +54,6 @@
/datum/job/marine/standard/ai/set_spawn_positions(count)
return spawn_positions
+
+#undef PVT_VARIANT
+#undef PFC_VARIANT
diff --git a/code/game/jobs/job/marine/squad/tl.dm b/code/game/jobs/job/marine/squad/tl.dm
index 35cdd44c52..44b71bbfc2 100644
--- a/code/game/jobs/job/marine/squad/tl.dm
+++ b/code/game/jobs/job/marine/squad/tl.dm
@@ -1,3 +1,6 @@
+
+#define SGT_VARIANT "Sergeant"
+
/datum/job/marine/tl
title = JOB_SQUAD_TEAM_LEADER
total_positions = 8
@@ -7,6 +10,8 @@
gear_preset = /datum/equipment_preset/uscm/tl
entry_message_body = "You are the Team Leader.Your task is to assist the squad leader in leading the squad as well as utilize ordnance such as orbital bombardments, CAS, and mortar as well as coordinating resupply with Requisitions and CIC. If the squad leader dies, you are expected to lead in their place."
+ job_options = list(SGT_VARIANT = "SGT")
+
/datum/job/marine/tl/generate_entry_conditions(mob/living/carbon/human/spawning_human)
. = ..()
spawning_human.important_radio_channels += JTAC_FREQ
@@ -39,3 +44,5 @@ AddTimelock(/datum/job/marine/tl, list(
/datum/job/marine/tl/ai
total_positions = 2
spawn_positions = 2
+
+#undef SGT_VARIANT
diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm
index da1e8a0522..23db6c1e8d 100644
--- a/code/game/jobs/job/marine/squads.dm
+++ b/code/game/jobs/job/marine/squads.dm
@@ -122,8 +122,8 @@
/datum/squad/marine/alpha
name = SQUAD_MARINE_1
- equipment_color = "#e61919"
- chat_color = "#e67d7d"
+ equipment_color = "#4148c8"
+ chat_color = "#828cff"
access = list(ACCESS_MARINE_ALPHA)
radio_freq = ALPHA_FREQ
minimap_color = MINIMAP_SQUAD_ALPHA
@@ -708,6 +708,13 @@
to_chat(H, FONT_SIZE_HUGE(SPAN_BLUE("You were assigned to [fireteam].")))
H.hud_set_squad()
+ // I'm not fixing how cursed these strings are, god save us all if someone (or me (https://i.imgur.com/nSy81Bn.png)) has to change these again
+ if(H.wear_id)
+ if(fireteam == "SQ1")
+ H.wear_id.access += ACCESS_SQUAD_ONE
+ if(fireteam == "SQ2")
+ H.wear_id.access += ACCESS_SQUAD_TWO
+
/datum/squad/proc/unassign_fireteam(mob/living/carbon/human/H, upd_ui = TRUE)
fireteams[H.assigned_fireteam].Remove(H)
var/ft = H.assigned_fireteam
@@ -722,6 +729,9 @@
to_chat(H, FONT_SIZE_HUGE(SPAN_BLUE("You were unassigned from [ft].")))
H.hud_set_squad()
+ if(H.wear_id)
+ H.wear_id.access.Remove(ACCESS_SQUAD_ONE, ACCESS_SQUAD_TWO)
+
/datum/squad/proc/assign_ft_leader(fireteam, mob/living/carbon/human/H, upd_ui = TRUE)
if(fireteam_leaders[fireteam])
unassign_ft_leader(fireteam, FALSE, FALSE)
diff --git a/code/game/machinery/OpTable.dm b/code/game/machinery/OpTable.dm
index 3c4104b6c2..c9092a750f 100644
--- a/code/game/machinery/OpTable.dm
+++ b/code/game/machinery/OpTable.dm
@@ -59,8 +59,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
/obj/structure/machinery/optable/get_examine_text(mob/user)
. = ..()
diff --git a/code/game/machinery/air_alarm.dm b/code/game/machinery/air_alarm.dm
index 16512a944b..e6fc0c8de7 100644
--- a/code/game/machinery/air_alarm.dm
+++ b/code/game/machinery/air_alarm.dm
@@ -431,8 +431,6 @@
var/wireIndex = AAlarmWireColorToIndex[wireColor] //not used in this function
AAlarmwires |= wireFlag
switch(wireIndex)
- if(AALARM_WIRE_IDSCAN)
-
if(AALARM_WIRE_POWER)
shorted = 0
shock(usr, 50)
diff --git a/code/game/machinery/bots/mulebot.dm b/code/game/machinery/bots/mulebot.dm
index b70829c708..d82591994e 100644
--- a/code/game/machinery/bots/mulebot.dm
+++ b/code/game/machinery/bots/mulebot.dm
@@ -551,7 +551,7 @@
var/speed = ((wires & WIRE_MOTOR1) ? 1:0) + ((wires & WIRE_MOTOR2) ? 2:0)
switch(speed)
if(0)
- // do nothing
+ pass()
if(1)
process_bot()
spawn(2)
diff --git a/code/game/machinery/computer/HolodeckControl.dm b/code/game/machinery/computer/HolodeckControl.dm
index 08de865815..fb1262ec74 100644
--- a/code/game/machinery/computer/HolodeckControl.dm
+++ b/code/game/machinery/computer/HolodeckControl.dm
@@ -94,6 +94,7 @@
icon = 'icons/obj/objects.dmi'
icon_state = "stool"
anchored = TRUE
+ unslashable = TRUE
flags_atom = FPRINT
@@ -111,6 +112,7 @@
density = TRUE
layer = WINDOW_LAYER
anchored = TRUE
+ unslashable = TRUE
flags_atom = ON_BORDER
/obj/structure/holowindow/initialize_pass_flags(datum/pass_flags_container/PF)
@@ -134,6 +136,7 @@
icon_state = "hoop"
anchored = TRUE
density = TRUE
+ unslashable = TRUE
throwpass = 1
var/side = ""
var/id = ""
diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm
index 07c9608072..23fe98994c 100644
--- a/code/game/machinery/computer/buildandrepair.dm
+++ b/code/game/machinery/computer/buildandrepair.dm
@@ -3,6 +3,7 @@
/obj/structure/computerframe
density = FALSE
anchored = FALSE
+ unslashable = TRUE
name = "Computer-frame"
icon = 'icons/obj/structures/machinery/stock_parts.dmi'
icon_state = "0"
diff --git a/code/game/machinery/computer/computer.dm b/code/game/machinery/computer/computer.dm
index adce72f7d8..304b24a14f 100644
--- a/code/game/machinery/computer/computer.dm
+++ b/code/game/machinery/computer/computer.dm
@@ -53,8 +53,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
/obj/structure/machinery/computer/bullet_act(obj/projectile/Proj)
if(exproof)
diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm
index 60bf17388d..6218bf0cde 100644
--- a/code/game/machinery/computer/dropship_weapons.dm
+++ b/code/game/machinery/computer/dropship_weapons.dm
@@ -594,14 +594,21 @@
return
var/targ_id = text2num(href_list["cas_camera"])
+
+ var/datum/cas_signal/new_signal
for(var/datum/cas_signal/LT as anything in cas_group.cas_signals)
if(LT.target_id == targ_id && LT.valid_signal())
- selected_cas_signal = LT
+ new_signal = LT
break
- if(!selected_cas_signal)
+ if(!new_signal)
to_chat(usr, SPAN_WARNING("Target lost or obstructed."))
return
+
+ if(usr in selected_cas_signal?.linked_cam?.viewing_users) // Reset previous cam
+ remove_from_view(usr)
+
+ selected_cas_signal = new_signal
if(selected_cas_signal && selected_cas_signal.linked_cam)
selected_cas_signal.linked_cam.view_directly(usr)
else
diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm
index b68ca41d6f..fe85599018 100644
--- a/code/game/machinery/computer/medical.dm
+++ b/code/game/machinery/computer/medical.dm
@@ -123,7 +123,6 @@
else
dat += "
[bdat]"
- else
else
dat += text("{Log In}", src)
show_browser(user, dat, "Medical Records", "med_rec")
@@ -365,8 +364,6 @@
for(var/datum/data/record/E in GLOB.data_core.medical)
if ((E.fields["ref"] == R.fields["ref"] || E.fields["id"] == R.fields["id"]))
M = E
- else
- //Foreach continue //goto(2540)
src.active1 = R
src.active2 = M
src.screen = 4
@@ -417,16 +414,12 @@
for(var/datum/data/record/R as anything in GLOB.data_core.medical)
if ((lowertext(R.fields["name"]) == t1 || t1 == lowertext(R.fields["id"])))
src.active2 = R
- else
- //Foreach continue //goto(3229)
if (!active2)
temp = "Could not locate record [t1]."
else
for(var/datum/data/record/E in GLOB.data_core.general)
if ((E.fields["name"] == src.active2.fields["name"] || E.fields["id"] == src.active2.fields["id"]))
src.active1 = E
- else
- //Foreach continue //goto(3334)
src.screen = 4
if (href_list["print_p"])
diff --git a/code/game/machinery/computer/pod.dm b/code/game/machinery/computer/pod.dm
index 3858230a08..f6adaa8edd 100644
--- a/code/game/machinery/computer/pod.dm
+++ b/code/game/machinery/computer/pod.dm
@@ -20,7 +20,6 @@
for(var/obj/structure/machinery/mass_driver/M in machines)
if(M.id == id)
connected = M
- else
return
return
diff --git a/code/game/machinery/computer/robot.dm b/code/game/machinery/computer/robot.dm
index 12f4faedc9..c5a13e2c3e 100644
--- a/code/game/machinery/computer/robot.dm
+++ b/code/game/machinery/computer/robot.dm
@@ -55,8 +55,7 @@
dat += " Locked Down |"
else
dat += " Operating Normally |"
- if (!R.canmove)
- else if(R.cell)
+ if(R.canmove && R.cell)
dat += " Battery Installed ([R.cell.charge]/[R.cell.maxcharge]) |"
else
dat += " No Cell Installed |"
diff --git a/code/game/machinery/computer/sentencing.dm b/code/game/machinery/computer/sentencing.dm
index 52a4159a2a..3aa9b5a032 100644
--- a/code/game/machinery/computer/sentencing.dm
+++ b/code/game/machinery/computer/sentencing.dm
@@ -78,6 +78,7 @@
data["laws"] += list(create_law_data("Major Laws", SSlaw_init.major_law))
data["laws"] += list(create_law_data("Capital Laws", SSlaw_init.capital_law))
data["laws"] += list(create_law_data("Optional Laws", SSlaw_init.optional_law))
+ data["laws"] += list(create_law_data("Precautionary Laws", SSlaw_init.precautionary_law))
return data
diff --git a/code/game/machinery/computer/skills.dm b/code/game/machinery/computer/skills.dm
index f891d46bc3..a20d344b53 100644
--- a/code/game/machinery/computer/skills.dm
+++ b/code/game/machinery/computer/skills.dm
@@ -43,16 +43,16 @@
var/dat
if (temp)
- dat = text("[]
Clear Screen", temp, src)
+ dat = "[temp]
Clear Screen"
else
- dat = text("Confirm Identity: []
", src, (scan ? text("[]", scan.name) : "----------"))
+ dat = "Confirm Identity: [scan ? scan.name : "----------"]
"
if (authenticated)
switch(screen)
if(1.0)
dat += {"
"}
- dat += text("Search Records
", src)
- dat += text("New Record
", src)
+ dat += "Search Records
"
+ dat += "New Record
"
dat += {"
@@ -70,20 +70,19 @@
if(!isnull(GLOB.data_core.general))
for(var/datum/data/record/R in sortRecord(GLOB.data_core.general, sortBy, order))
for(var/datum/data/record/E in GLOB.data_core.security)
- var/background
- dat += text("[] | ", background, src, R, R.fields["name"])
- dat += text("[] | ", R.fields["id"])
- dat += text("[] | ", R.fields["rank"])
+ dat += "
[R.fields["name"]] | "
+ dat += "[R.fields["id"]] | "
+ dat += "[R.fields["rank"]] | "
dat += "
"
- dat += text("Record Maintenance
", src)
- dat += text("{Log Out}",src)
+ dat += "Record Maintenance
"
+ dat += "{Log Out}"
if(2.0)
dat += "Records Maintenance
"
dat += "
Delete All Records
Back"
if(3.0)
dat += "Employment Record
"
if ((istype(active1, /datum/data/record) && GLOB.data_core.general.Find(active1)))
- dat += text(" \
+ dat += "")
+ |
"
else
dat += "General Record Lost!
"
- dat += text("\nDelete Record (ALL)
\nPrint Record
\nBack
", src, src, src)
+ dat += "\nDelete Record (ALL)
\nPrint Record
\nBack
"
if(4.0)
if(!Perp.len)
- dat += text("ERROR. String could not be located.
Back", src)
+ dat += "ERROR. String could not be located.
Back"
else
dat += {"
"}
- dat += text("Search Results for '[]': | ", tempname)
+ dat += "Search Results for '[tempname]': | "
dat += {"
@@ -121,17 +120,14 @@
if(istype(Perp[i+1],/datum/data/record/))
var/datum/data/record/E = Perp[i+1]
crimstat = E.fields["criminal"]
- var/background
- background = "'background-color:#00FF7F;'"
- dat += text("[] | ", background, src, R, R.fields["name"])
- dat += text("[] | ", R.fields["id"])
- dat += text("[] | ", R.fields["rank"])
- dat += text("[] |
", crimstat)
+ dat += "[R.fields["name"]] | "
+ dat += "[R.fields["id"]] | "
+ dat += "[R.fields["rank"]] | "
+ dat += "[crimstat] |
"
dat += "
"
- dat += text("
Return to index.", src)
- else
+ dat += "
Return to index."
else
- dat += text("{Log In}", src)
+ dat += "{Log In}"
show_browser(user, dat, "Employment Records", "secure_rec", "size=600x400")
onclose(user, "secure_rec")
return
@@ -342,7 +338,6 @@ What a mess.*/
if ((R.fields["name"] == active1.fields["name"] || R.fields["id"] == active1.fields["id"]))
GLOB.data_core.medical -= R
qdel(R)
- else
QDEL_NULL(active1)
else
temp = "This function does not appear to be working at the moment. Our apologies."
diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm
index 86bb5f79a0..e13b282cbc 100644
--- a/code/game/machinery/cryopod.dm
+++ b/code/game/machinery/cryopod.dm
@@ -145,6 +145,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li
icon_state = "cryo_rear"
anchored = TRUE
density = TRUE
+ unslashable = TRUE
var/orient_right = null //Flips the sprite.
diff --git a/code/game/machinery/deployable.dm b/code/game/machinery/deployable.dm
index e6df92d258..99996bea89 100644
--- a/code/game/machinery/deployable.dm
+++ b/code/game/machinery/deployable.dm
@@ -54,7 +54,6 @@
src.health -= W.force * 0.75
if("brute")
src.health -= W.force * 0.5
- else
if (src.health <= 0)
src.explode()
..()
diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm
index b2d836ee47..5a4fee7f23 100644
--- a/code/game/machinery/doors/poddoor.dm
+++ b/code/game/machinery/doors/poddoor.dm
@@ -53,6 +53,9 @@
return XENO_ATTACK_ACTION
/obj/structure/machinery/door/poddoor/proc/pry_open(mob/living/carbon/xenomorph/X, time = 4 SECONDS)
+ if(X.action_busy)
+ return
+
X.visible_message(SPAN_DANGER("[X] begins prying [src] open."),\
SPAN_XENONOTICE("You start prying [src] open."), max_distance = 3)
diff --git a/code/game/machinery/kitchen/smartfridge.dm b/code/game/machinery/kitchen/smartfridge.dm
index f52350aa8d..903cd06c31 100644
--- a/code/game/machinery/kitchen/smartfridge.dm
+++ b/code/game/machinery/kitchen/smartfridge.dm
@@ -23,7 +23,7 @@
var/icon_on = "smartfridge"
var/icon_off = "smartfridge-off"
var/icon_panel = "smartfridge-panel"
- var/item_quants = list()
+ var/list/item_quants = list() //! Assoc list of names -> list(items)
var/ispowered = TRUE //starts powered
var/is_secure_fridge = FALSE
var/shoot_inventory = FALSE
@@ -40,6 +40,24 @@
GLOB.vending_products[/obj/item/reagent_container/glass/bottle] = 1
GLOB.vending_products[/obj/item/storage/pill_bottle] = 1
+/obj/structure/machinery/smartfridge/Destroy(force)
+ if(is_in_network()) // Delete all contents from networked storage index
+ for(var/atom/movable/item as anything in contents)
+ delete_contents(item)
+ item_quants.Cut()
+ return ..() // parent will delete contents if we're not networked
+
+/// Deletes given object in contents of the smartfridge
+/obj/structure/machinery/smartfridge/proc/delete_contents(obj/item/item)
+ if(item.loc != src)
+ return
+ contents -= item
+ if(item_quants[item.name])
+ item_quants[item.name] -= item
+ if(is_in_network() && chemical_data.shared_item_storage[item.name])
+ chemical_data.shared_item_storage[item.name] -= item
+ qdel(item)
+
/obj/structure/machinery/smartfridge/proc/accept_check(obj/item/O as obj)
if(istype(O,/obj/item/reagent_container/food/snacks/grown/) || istype(O,/obj/item/seeds/))
return 1
diff --git a/code/game/machinery/medical_pod/bodyscanner.dm b/code/game/machinery/medical_pod/bodyscanner.dm
index 4756121e50..fdcd0ceb62 100644
--- a/code/game/machinery/medical_pod/bodyscanner.dm
+++ b/code/game/machinery/medical_pod/bodyscanner.dm
@@ -62,8 +62,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
#ifdef OBJECTS_PROXY_SPEECH
// Transfers speech to occupant
@@ -124,8 +122,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
/obj/structure/machinery/body_scanconsole/power_change()
..()
diff --git a/code/game/machinery/medical_pod/sleeper.dm b/code/game/machinery/medical_pod/sleeper.dm
index 805fedb292..35d9a44863 100644
--- a/code/game/machinery/medical_pod/sleeper.dm
+++ b/code/game/machinery/medical_pod/sleeper.dm
@@ -385,7 +385,6 @@
t1 = "Unconscious"
if(2)
t1 = "*dead*"
- else
to_chat(user, "[]\t Health %: [] ([])", (occupant.health > 50 ? SPAN_NOTICE("") : SPAN_DANGER("")), occupant.health, t1)
to_chat(user, "[]\t -Core Temperature: []°C ([]°F)
", (occupant.bodytemperature > 50 ? "" : ""), occupant.bodytemperature-T0C, occupant.bodytemperature*1.8-459.67)
to_chat(user, "[]\t -Brute Damage %: []", (occupant.getBruteLoss() < 60 ? SPAN_NOTICE("") : SPAN_DANGER("")), occupant.getBruteLoss())
diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm
index bf7c4fffee..18b62b9d77 100644
--- a/code/game/machinery/vending/cm_vending.dm
+++ b/code/game/machinery/vending/cm_vending.dm
@@ -761,6 +761,11 @@ GLOBAL_LIST_EMPTY(vending_products)
vendor_theme = VENDOR_THEME_USCM
vend_flags = VEND_CLUTTER_PROTECTION|VEND_CATEGORY_CHECK|VEND_TO_HAND
+/obj/structure/machinery/cm_vending/gear/Initialize()
+ . = ..()
+ if(z in SSmapping.levels_by_trait(ZTRAIT_GROUND))
+ malfunction()
+
/obj/structure/machinery/cm_vending/gear/ui_static_data(mob/user)
. = ..(user)
.["vendor_type"] = "gear"
@@ -774,10 +779,15 @@ GLOBAL_LIST_EMPTY(vending_products)
desc = "An automated closet hooked up to a colossal storage of standard-issue uniform and armor."
icon_state = "clothing"
use_points = TRUE
+ show_points = TRUE
vendor_theme = VENDOR_THEME_USCM
- show_points = FALSE
vend_flags = VEND_CLUTTER_PROTECTION | VEND_UNIFORM_RANKS | VEND_UNIFORM_AUTOEQUIP | VEND_CATEGORY_CHECK
+/obj/structure/machinery/cm_vending/clothing/Initialize()
+ . = ..()
+ if(z in SSmapping.levels_by_trait(ZTRAIT_GROUND))
+ malfunction()
+
/obj/structure/machinery/cm_vending/clothing/ui_static_data(mob/user)
. = ..(user)
.["vendor_type"] = "clothing"
diff --git a/code/game/machinery/vending/vending.dm b/code/game/machinery/vending/vending.dm
index a74dd923cb..414ab4a562 100644
--- a/code/game/machinery/vending/vending.dm
+++ b/code/game/machinery/vending/vending.dm
@@ -398,28 +398,25 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending
/obj/structure/machinery/vending/proc/GetProductIndex(datum/data/vending_product/product)
var/list/plist
- switch(product.category)
- if(CAT_NORMAL)
- plist=product_records
- if(CAT_HIDDEN)
- plist=hidden_records
- if(CAT_COIN)
- plist=coin_records
- else
- warning("UNKNOWN CATEGORY [product.category] IN TYPE [product.product_path] INSIDE [type]!")
+ if(product.category == CAT_NORMAL)
+ plist = product_records
+ else if(product.category == CAT_HIDDEN)
+ plist = hidden_records
+ else if(product.category == CAT_COIN)
+ plist = coin_records
+ else
+ warning("UNKNOWN CATEGORY [product.category] IN TYPE [product.product_path] INSIDE [type]!")
return plist.Find(product)
/obj/structure/machinery/vending/proc/GetProductByID(pid, category)
- switch(category)
- if(CAT_NORMAL)
- return product_records[pid]
- if(CAT_HIDDEN)
- return hidden_records[pid]
- if(CAT_COIN)
- return coin_records[pid]
- else
- warning("UNKNOWN PRODUCT: PID: [pid], CAT: [category] INSIDE [type]!")
- return null
+ if(category == CAT_NORMAL)
+ return product_records[pid]
+ else if(category == CAT_HIDDEN)
+ return hidden_records[pid]
+ else if(category == CAT_COIN)
+ return coin_records[pid]
+ else
+ warning("UNKNOWN PRODUCT: PID: [pid], CAT: [category] INSIDE [type]!")
/obj/structure/machinery/vending/attack_hand(mob/user)
if(is_tipped_over)
diff --git a/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm b/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm
index 830511ad4b..d7d49a8ae0 100644
--- a/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm
+++ b/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm
@@ -1,9 +1,9 @@
//------------GEAR VENDOR---------------
GLOBAL_LIST_INIT(cm_vending_gear_commanding_officer, list(
- list("COMMANDING OFFICER'S PRIMARY (CHOOSE 1)", 0, null, null, null),
- list("M46C pulse rifle", 0, /obj/effect/essentials_set/co/riflepreset, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY),
- list("M56C Smartgun", 0, /obj/item/storage/box/m56c_system, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY),
+ list("COMMANDER'S PRIMARY (CHOOSE 1)", 0, null, null, null),
+ list("M46C Pulse Rifle", 0, /obj/effect/essentials_set/co/riflepreset, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
+ list("M56C Smartgun", 0, /obj/item/storage/box/m56c_system, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("PRIMARY AMMUNITION", 0, null, null, null),
list("M41A MK1 Magazine", 30, /obj/item/ammo_magazine/rifle/m41aMK1, null, VENDOR_ITEM_RECOMMENDED),
@@ -28,11 +28,19 @@ GLOBAL_LIST_INIT(cm_vending_gear_commanding_officer, list(
list("M41A Rubber Shot Magazine", 10, /obj/item/ammo_magazine/rifle/rubber, null, VENDOR_ITEM_REGULAR),
list("Beanbag Slugs", 10, /obj/item/ammo_magazine/shotgun/beanbag, null, VENDOR_ITEM_REGULAR),
+ list("EXPLOSIVES", 0, null, null, null),
+ list("HEDP Grenade Pack", 15, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR),
+ list("HEFA Grenade Pack", 15, /obj/item/storage/box/packet/hefa, null, VENDOR_ITEM_REGULAR),
+ list("WP Grenade Pack", 15, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR),
+
list("RAIL ATTACHMENTS", 0, null, null, null),
list("Red-Dot Sight", 15, /obj/item/attachable/reddot, null, VENDOR_ITEM_REGULAR),
list("Reflex Sight", 15, /obj/item/attachable/reflex, null, VENDOR_ITEM_REGULAR),
list("S4 2x Telescopic Mini-Scope", 15, /obj/item/attachable/scope/mini, null, VENDOR_ITEM_REGULAR),
+ list("Helmet Visors", 0, null, null, null),
+ list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_RECOMMENDED),
+
list("UNDERBARREL ATTACHMENTS", 0, null, null, null),
list("Laser Sight", 15, /obj/item/attachable/lasersight, null, VENDOR_ITEM_REGULAR),
list("Angled Grip", 15, /obj/item/attachable/angledgrip, null, VENDOR_ITEM_REGULAR),
@@ -40,12 +48,13 @@ GLOBAL_LIST_INIT(cm_vending_gear_commanding_officer, list(
list("Underbarrel Shotgun", 15, /obj/item/attachable/attached_gun/shotgun, null, VENDOR_ITEM_REGULAR),
list("Underbarrel Extinguisher", 15, /obj/item/attachable/attached_gun/extinguisher, null, VENDOR_ITEM_REGULAR),
list("Underbarrel Flamethrower", 15, /obj/item/attachable/attached_gun/flamer, null, VENDOR_ITEM_REGULAR),
+ list("Underbarrel Grenade Launcher", 5, /obj/item/attachable/attached_gun/grenade, null, VENDOR_ITEM_REGULAR),
list("BARREL ATTACHMENTS", 0, null, null, null),
- list("Suppressor", 15, /obj/item/attachable/suppressor, null, VENDOR_ITEM_REGULAR),
list("Extended Barrel", 15, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR),
list("Recoil Compensator", 15, /obj/item/attachable/compensator, null, VENDOR_ITEM_REGULAR),
- ))
+ list("Suppressor", 15, /obj/item/attachable/suppressor, null, VENDOR_ITEM_REGULAR),
+ ))
/obj/structure/machinery/cm_vending/gear/commanding_officer
name = "\improper ColMarTech Commanding Officer Weapon Rack"
@@ -63,9 +72,15 @@ GLOBAL_LIST_INIT(cm_vending_gear_commanding_officer, list(
GLOBAL_LIST_INIT(cm_vending_clothing_commanding_officer, list(
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/cdrcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY),
- list("Satchel", 0, /obj/item/storage/backpack/satchel/lockable, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY),
list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
+ list("COMMANDING OFFICER ESSENTIALS KIT (TAKE ALL)", 0, null, null, null),
+ list("Commanding Officer Essentials Kit", 0, /obj/effect/essentials_set/commanding_officer, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY),
+
+ list("BAGS (CHOOSE 1)", 0, null, null, null),
+ list("Commanding Officer Backpack", 0, /obj/item/storage/backpack/mcommander, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY),
+ list("Secure Satchel", 0, /obj/item/storage/backpack/satchel/lockable, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY),
+
list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Commanding Officer's M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/CO, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY),
list("Commanding Officer's M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/CO, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY),
@@ -84,8 +99,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_commanding_officer, list(
list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED),
list("Security HUD Glasses", 0, /obj/item/clothing/glasses/sunglasses/sechud, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR),
- list("BELTS (TAKE ALL)", 0, null, null, null),
+ list("BELTS (CHOOSE 1)", 0, null, null, null),
list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("Military Police Belt", 0, /obj/item/storage/belt/security/MP/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 Medical Storage Rig", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 Holster Toolrig", 0, /obj/item/storage/belt/gun/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
list("POUCHES (CHOOSE 2)", 0, null, null, null),
list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
@@ -110,6 +130,15 @@ GLOBAL_LIST_INIT(cm_vending_clothing_commanding_officer, list(
/obj/structure/machinery/cm_vending/clothing/commanding_officer/get_listed_products(mob/user)
return GLOB.cm_vending_clothing_commanding_officer
+/obj/effect/essentials_set/commanding_officer
+ spawned_gear_list = list(
+ /obj/item/device/binoculars/range/designator,
+ /obj/item/map/current_map,
+ /obj/item/device/whistle,
+ /obj/item/weapon/gun/energy/taser,
+ /obj/item/device/megaphone,
+ )
+
// This gets around the COs' weapon not spawning without incendiary mag.
/obj/effect/essentials_set/co/riflepreset
spawned_gear_list = list(
diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer.dm
index 11c9341da0..50b83ccdc5 100644
--- a/code/game/machinery/vending/vendor_types/crew/staff_officer.dm
+++ b/code/game/machinery/vending/vendor_types/crew/staff_officer.dm
@@ -13,13 +13,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer, list(
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY),
list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY),
- list("Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY),
list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Service Uniform", 0, /obj/item/clothing/under/marine/officer/bridge, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Operations Uniform", 0, /obj/item/clothing/under/marine/officer/boiler, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED),
+ list("Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR),
list("JACKET (CHOOSE 1)", 0, null, null, null),
list("Service Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/service, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED),
@@ -33,65 +33,21 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer, list(
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
- list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
- list("M4A3 Pistol", 0, /obj/item/storage/belt/gun/m4a3/commander, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
- list("VP78 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp78, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
+ list("M4A3 Pistol", 0, /obj/item/storage/belt/gun/m4a3/commander, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
+ list("VP78 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp78, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("BACKPACK (CHOOSE 1)", 0, null, null, null),
list("Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR),
list("Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR),
- list("Radio Telephone Pack", 0, /obj/item/storage/backpack/marine/satchel/rto, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED),
- list("BELT (CHOOSE 1)", 0, null, null, null),
- list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
- list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
- list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
- list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
- list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
- list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
- list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
- list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
-
- list("POUCHES (CHOOSE 2)", 0, null, null, null),
- list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("First Responder Pouch", 0, /obj/item/storage/pouch/first_responder, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Fuel Tank Strap Pouch", 0, /obj/item/storage/pouch/flamertank, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED),
- list("Large Magazine Pouch", 0, /obj/item/storage/pouch/magazine/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Large Shotgun Shell Pouch", 0, /obj/item/storage/pouch/shotgun/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Medical Pouch", 0, /obj/item/storage/pouch/medical, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
- list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
-
- list("ACCESSORIES (CHOOSE 1)", 0, null, null, null),
- list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
- list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED),
- list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
- list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
- list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
-
- list("MASK (CHOOSE 1)", 0, null, null, null),
- list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR),
- list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR),
list("OTHER SUPPLIES", 0, null, null, null),
list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR),
list("Rangefinder", 8, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR),
list("Laser Designator", 12, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_RECOMMENDED),
- list("Data Detector", 5, /obj/item/device/motiondetector/intel, null, VENDOR_ITEM_REGULAR),
list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_RECOMMENDED),
- list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR),
- list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR),
+ list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_RECOMMENDED),
list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR),
list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR),
- list("Machete Scabbard (Full)", 2, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR)
))
diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm
new file mode 100644
index 0000000000..e616cff228
--- /dev/null
+++ b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm
@@ -0,0 +1,82 @@
+/obj/structure/machinery/cm_vending/clothing/staff_officer_armory
+ name = "\improper ColMarTech Staff Officer Armory Equipment Rack"
+ desc = "An automated combat equipment vendor for Staff Officers."
+ req_access = list(ACCESS_MARINE_COMMAND)
+ icon_state = "mar_rack"
+ vendor_role = list(JOB_SO)
+
+/obj/structure/machinery/cm_vending/clothing/staff_officer_armory/get_listed_products(mob/user)
+ return GLOB.cm_vending_clothing_staff_officer_armory
+
+//------------GEAR---------------
+
+GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list(
+ list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null),
+ list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_MANDATORY),
+ list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_COMBAT_HELMET, VENDOR_ITEM_MANDATORY),
+ list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY),
+ list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY),
+ list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
+ list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR),
+
+ list("SPECIALISATION KIT (CHOOSE 1)", 0, null, null, null),
+ list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED),
+ list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED),
+
+ list("BELT (CHOOSE 1)", 0, null, null, null),
+ list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
+ list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
+ list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
+ list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
+ list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
+ list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
+ list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR),
+
+ list("POUCHES (CHOOSE 2)", 0, null, null, null),
+ list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("First Responder Pouch", 0, /obj/item/storage/pouch/first_responder, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Fuel Tank Strap Pouch", 0, /obj/item/storage/pouch/flamertank, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED),
+ list("Large Magazine Pouch", 0, /obj/item/storage/pouch/magazine/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Large Shotgun Shell Pouch", 0, /obj/item/storage/pouch/shotgun/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Medical Pouch", 0, /obj/item/storage/pouch/medical, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+ list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR),
+
+ list("ACCESSORIES (CHOOSE 1)", 0, null, null, null),
+ list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
+ list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED),
+ list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
+ list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
+ list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR),
+
+ list("MASK (CHOOSE 1)", 0, null, null, null),
+ list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR),
+ list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR),
+
+ list("OTHER SUPPLIES", 0, null, null, null),
+ list("Medical Helmet Optic", 5, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR),
+ list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_REGULAR),
+ list("Radio Telephone Pack", 15, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_RECOMMENDED),
+ list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR),
+ list("Rangefinder", 8, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR),
+ list("Laser Designator", 12, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_RECOMMENDED),
+ list("Data Detector", 5, /obj/item/device/motiondetector/intel, null, VENDOR_ITEM_REGULAR),
+ list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_RECOMMENDED),
+ list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR),
+ list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR),
+ list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR),
+ list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR),
+ list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR)
+ ))
diff --git a/code/game/machinery/vending/vendor_types/crew/synthetic.dm b/code/game/machinery/vending/vendor_types/crew/synthetic.dm
index 8e556318c7..bf96246e92 100644
--- a/code/game/machinery/vending/vendor_types/crew/synthetic.dm
+++ b/code/game/machinery/vending/vendor_types/crew/synthetic.dm
@@ -49,7 +49,6 @@
list("Injector (Bicaridine)", 1, /obj/item/reagent_container/hypospray/autoinjector/bicaridine, null, VENDOR_ITEM_REGULAR),
list("Injector (Dexalin+)", 1, /obj/item/reagent_container/hypospray/autoinjector/dexalinp, null, VENDOR_ITEM_REGULAR),
- list("Injector (Epinephrine)", 2, /obj/item/reagent_container/hypospray/autoinjector/adrenaline, null, VENDOR_ITEM_REGULAR),
list("Injector (Inaprovaline)", 1, /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, null, VENDOR_ITEM_REGULAR),
list("Injector (Kelotane)", 1, /obj/item/reagent_container/hypospray/autoinjector/kelotane, null, VENDOR_ITEM_REGULAR),
list("Injector (Oxycodone)", 2, /obj/item/reagent_container/hypospray/autoinjector/oxycodone, null, VENDOR_ITEM_REGULAR),
@@ -60,7 +59,6 @@
list("Autoinjector (C-M) (EMPTY)", 2, /obj/item/reagent_container/hypospray/autoinjector/empty/medium, null, VENDOR_ITEM_REGULAR),
list("Autoinjector (C-L) (EMPTY)", 4, /obj/item/reagent_container/hypospray/autoinjector/empty/large, null, VENDOR_ITEM_REGULAR),
- list("Emergency Defibrillator", 4, /obj/item/device/defibrillator, null, VENDOR_ITEM_MANDATORY),
list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR),
list("Surgical Line", 4, /obj/item/tool/surgery/surgical_line, null, VENDOR_ITEM_REGULAR),
list("Synth-Graft", 4, /obj/item/tool/surgery/synthgraft, null, VENDOR_ITEM_REGULAR),
@@ -348,7 +346,6 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list(
list("Autocompressor", 15, /obj/item/clothing/suit/auto_cpr, null, VENDOR_ITEM_REGULAR),
list("Backpack Firefighting Watertank", 15, /obj/item/reagent_container/glass/watertank/atmos, null, VENDOR_ITEM_REGULAR),
list("Breaching Hammer", 15, /obj/item/weapon/twohanded/breacher/synth, null, VENDOR_ITEM_REGULAR),
- list("Compact Defibrillator", 15, /obj/item/device/defibrillator/compact, null, VENDOR_ITEM_REGULAR),
list("Compact Nailgun kit", 15, /obj/effect/essentials_set/cnailgun, null, VENDOR_ITEM_REGULAR),
list("Crew Monitor", 15, /obj/item/tool/crew_monitor, null, VENDOR_ITEM_REGULAR),
list("Experimental Meson Goggles", 15, /obj/item/clothing/glasses/night/experimental_mesons, null, VENDOR_ITEM_REGULAR),
diff --git a/code/game/machinery/vending/vendor_types/medical.dm b/code/game/machinery/vending/vendor_types/medical.dm
index 9844101cb1..ece0752721 100644
--- a/code/game/machinery/vending/vendor_types/medical.dm
+++ b/code/game/machinery/vending/vendor_types/medical.dm
@@ -141,7 +141,6 @@
list("AUTOINJECTORS", -1, null, null),
list("Autoinjector (Bicaridine)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR),
list("Autoinjector (Dexalin+)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR),
- list("Autoinjector (Epinephrine)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/adrenaline, VENDOR_ITEM_REGULAR),
list("Autoinjector (Inaprovaline)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR),
list("Autoinjector (Kelotane)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR),
list("Autoinjector (Oxycodone)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR),
@@ -174,7 +173,6 @@
list("Health Analyzer", round(scale * 5), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR),
list("M276 Pattern Medical Storage Rig", round(scale * 2), /obj/item/storage/belt/medical, VENDOR_ITEM_REGULAR),
list("Medical HUD Glasses", round(scale * 3), /obj/item/clothing/glasses/hud/health, VENDOR_ITEM_REGULAR),
- list("Stasis Bag", round(scale * 2), /obj/item/bodybag/cryobag, VENDOR_ITEM_REGULAR),
list("Syringe", round(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR)
)
diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm
index 2b46d0bead..a0be9e2793 100644
--- a/code/game/machinery/vending/vendor_types/requisitions.dm
+++ b/code/game/machinery/vending/vendor_types/requisitions.dm
@@ -10,6 +10,11 @@
vendor_theme = VENDOR_THEME_USCM
vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/Initialize()
+ . = ..()
+ if(z in SSmapping.levels_by_trait(ZTRAIT_GROUND))
+ malfunction()
+
/obj/structure/machinery/cm_vending/sorted/cargo_guns/vend_fail()
return
@@ -191,7 +196,7 @@
turf_to_vent_to = H.loc
return turf_to_vent_to
-/obj/structure/machinery/cm_vending/sorted/cargo_guns/blend
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend
icon_state = "req_guns_wall"
tiles_with = list(
/obj/structure/window/framed/almayer,
@@ -209,6 +214,11 @@
vendor_theme = VENDOR_THEME_USCM
vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES
+/obj/structure/machinery/cm_vending/sorted/cargo_ammo/Initialize()
+ . = ..()
+ if(z in SSmapping.levels_by_trait(ZTRAIT_GROUND))
+ malfunction()
+
/obj/structure/machinery/cm_vending/sorted/cargo_ammo/vend_fail()
return
@@ -295,7 +305,7 @@
updateUsrDialog()
return //We found our item, no reason to go on.
-/obj/structure/machinery/cm_vending/sorted/cargo_ammo/blend
+/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend
icon_state = "req_ammo_wall"
tiles_with = list(
/obj/structure/window/framed/almayer,
@@ -331,6 +341,11 @@
vendor_theme = VENDOR_THEME_USCM
icon_state = "req_attach"
+/obj/structure/machinery/cm_vending/sorted/attachments/Initialize()
+ . = ..()
+ if(z in SSmapping.levels_by_trait(ZTRAIT_GROUND))
+ malfunction()
+
/obj/structure/machinery/cm_vending/sorted/attachments/vend_fail()
return
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
index c965b7c90e..dd3700b3d5 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
@@ -23,7 +23,6 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list(
list("AUTOINJECTORS", 0, null, null, null),
list("Autoinjector (Bicaridine)", 1, /obj/item/reagent_container/hypospray/autoinjector/bicaridine, null, VENDOR_ITEM_REGULAR),
list("Autoinjector (Dexalin+)", 1, /obj/item/reagent_container/hypospray/autoinjector/dexalinp, null, VENDOR_ITEM_REGULAR),
- list("Autoinjector (Epinephrine)", 2, /obj/item/reagent_container/hypospray/autoinjector/adrenaline, null, VENDOR_ITEM_REGULAR),
list("Autoinjector (Inaprovaline)", 1, /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, null, VENDOR_ITEM_REGULAR),
list("Autoinjector (Kelotane)", 1, /obj/item/reagent_container/hypospray/autoinjector/kelotane, null, VENDOR_ITEM_REGULAR),
list("Autoinjector (Oxycodone)", 2, /obj/item/reagent_container/hypospray/autoinjector/oxycodone, null, VENDOR_ITEM_REGULAR),
@@ -42,7 +41,6 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list(
list("MEDICAL UTILITIES", 0, null, null, null),
list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR),
list("Roller Bed", 4, /obj/item/roller, null, VENDOR_ITEM_REGULAR),
- list("Stasis Bag", 6, /obj/item/bodybag/cryobag, null, VENDOR_ITEM_REGULAR),
list("Pressurized Reagent Canister Pouch (EMPTY)", 3, /obj/item/storage/pouch/pressurized_reagent_canister, null, VENDOR_ITEM_REGULAR),
list("G8-A General Utility Pouch", 15, /obj/item/storage/backpack/general_belt, null, VENDOR_ITEM_REGULAR),
list("MS-11 Smart Refill Tank", 6, /obj/item/reagent_container/glass/minitank, null, VENDOR_ITEM_REGULAR),
@@ -214,4 +212,6 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list(
/obj/item/storage/surgical_case/regular,
/obj/item/reagent_container/blood/OMinus,
/obj/item/reagent_container/blood/OMinus,
+ /obj/item/reagent_container/hypospray/autoinjector/adrenaline_concentrated,
+ /obj/item/reagent_container/hypospray/autoinjector/adrenaline_concentrated,
)
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
index ab972f17bf..a4adbefe89 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
@@ -74,7 +74,7 @@
list("USCM Uniform", round(scale * 15), /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR),
list("Marine Combat Gloves", round(scale * 15), /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR),
list("M10 Pattern Marine Helmet", round(scale * 15), /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR),
- list("Marine Radio Headset", round(scale * 15), /obj/item/device/radio/headset/almayer/marine/alpha, VENDOR_ITEM_REGULAR),
+ list("Marine Radio Headset", round(scale * 15), /obj/item/device/radio/headset/almayer/marine, VENDOR_ITEM_REGULAR),
list("WEBBINGS", -1, null, null),
list("Brown Webbing Vest", round(scale * 1.25), /obj/item/clothing/accessory/storage/black_vest/brown_vest, VENDOR_ITEM_REGULAR),
@@ -274,20 +274,23 @@
list("88 Mod 4 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", round(scale * 2), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
+ list("VP78 pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp78, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", round(scale * 1), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 AP Magazine (9mm)", round(scale * 10), /obj/item/ammo_magazine/pistol/mod88, VENDOR_ITEM_REGULAR),
- list("M44 Speedloader (.44)", round(scale * 10), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
- list("M4A3 Magazine (9mm)", round(scale * 10), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
+ list("88M4 AP Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
+ list("M4A3 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
+ list("VP78 magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR),
list("MISCELLANEOUS", -1, null, null),
list("Extinguisher", round(scale * 5), /obj/item/tool/extinguisher, VENDOR_ITEM_REGULAR),
list("Fire Extinguisher (Portable)", round(scale * 1), /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR),
- list("Roller Bed", round(scale * 1), /obj/item/roller, VENDOR_ITEM_REGULAR),
+ list("Roller Bed", round(scale * 2), /obj/item/roller, VENDOR_ITEM_REGULAR),
list("Machete Scabbard (Full)", round(scale * 5), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR),
list("Binoculars", round(scale * 1), /obj/item/device/binoculars, VENDOR_ITEM_REGULAR),
list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR),
+ list("Rail Flashlight", round(scale * 5), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR),
)
//--------------SQUAD ATTACHMENTS VENDOR--------------
diff --git a/code/game/objects/effects/acid_hole.dm b/code/game/objects/effects/acid_hole.dm
index 415df0e7e5..1b320a9d26 100644
--- a/code/game/objects/effects/acid_hole.dm
+++ b/code/game/objects/effects/acid_hole.dm
@@ -44,10 +44,8 @@
qdel(src) //no wall?! then cease existence...
return
- if(!use_wall_hole(user))
- if(user.mob_size >= MOB_SIZE_BIG)
- expand_hole(user)
- return XENO_NO_DELAY_ACTION
+ expand_hole(user)
+ return XENO_NO_DELAY_ACTION
/obj/effect/acid_hole/proc/expand_hole(mob/living/carbon/xenomorph/user)
if(user.action_busy || user.lying)
@@ -55,9 +53,11 @@
playsound(src, "pry", 25, 1)
xeno_attack_delay(user)
+ user.freeze()
if(do_after(user, 60, INTERRUPT_ALL, BUSY_ICON_GENERIC) && !QDELETED(src) && holed_wall && !user.lying && istype(holed_wall))
holed_wall.take_damage(rand(2000,3500))
user.emote("roar")
+ user.unfreeze()
/obj/effect/acid_hole/proc/use_wall_hole(mob/user)
diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm
index 49d758b52b..867c6924b3 100644
--- a/code/game/objects/effects/aliens.dm
+++ b/code/game/objects/effects/aliens.dm
@@ -287,19 +287,23 @@
opacity = FALSE
anchored = TRUE
unacidable = TRUE
+ /// Target the acid is melting
var/atom/acid_t
- var/ticks = 0
- var/acid_strength = 1 //100% speed, normal
- var/barricade_damage = 40
+ /// Duration left to next acid stage
+ var/remaining = 0
+ /// Acid stages left to complete melting
+ var/ticks_left = 3
+ /// Factor of duration between acid progression
+ var/acid_delay = 1
/// How much fuel the acid drains from the flare every acid tick
var/flare_damage = 500
- var/barricade_damage_ticks = 10 // tick is once per 5 seconds. This tells us how many times it will try damaging barricades
+ var/barricade_damage = 40
var/in_weather = FALSE
//Sentinel weakest acid
/obj/effect/xenomorph/acid/weak
name = "weak acid"
- acid_strength = 2.5 //250% normal speed
+ acid_delay = 2.5 //250% delay (40% speed)
barricade_damage = 20
flare_damage = 150
icon_state = "acid_weak"
@@ -307,24 +311,32 @@
//Superacid
/obj/effect/xenomorph/acid/strong
name = "strong acid"
- acid_strength = 0.4 //40% normal speed
+ acid_delay = 0.4 //40% delay (250% speed)
barricade_damage = 100
flare_damage = 1875
icon_state = "acid_strong"
-/obj/effect/xenomorph/acid/New(loc, target)
- ..(loc)
+/obj/effect/xenomorph/acid/Initialize(mapload, atom/target)
+ . = ..()
acid_t = target
- var/strength_t = isturf(acid_t) ? 8:4 // Turf take twice as long to take down.
+ if(isturf(acid_t))
+ ticks_left = 7 // Turf take twice as long to take down.
+ else if(istype(acid_t, /obj/structure/barricade))
+ ticks_left = 9
handle_weather()
- tick(strength_t)
-
RegisterSignal(SSdcs, COMSIG_GLOB_WEATHER_CHANGE, PROC_REF(handle_weather))
+ RegisterSignal(acid_t, COMSIG_PARENT_QDELETING, PROC_REF(cleanup))
+ START_PROCESSING(SSeffects, src)
/obj/effect/xenomorph/acid/Destroy()
acid_t = null
+ STOP_PROCESSING(SSeffects, src)
. = ..()
+/obj/effect/xenomorph/acid/proc/cleanup()
+ SIGNAL_HANDLER
+ qdel(src)
+
/obj/effect/xenomorph/acid/proc/handle_weather()
SIGNAL_HANDLER
@@ -333,76 +345,85 @@
return
if(SSweather.is_weather_event && locate(acids_area) in SSweather.weather_areas)
- acid_strength = acid_strength + (SSweather.weather_event_instance.fire_smothering_strength * 0.33) //smothering_strength is 1-10, acid strength is a multiplier
+ acid_delay = acid_delay + (SSweather.weather_event_instance.fire_smothering_strength * 0.33) //smothering_strength is 1-10, acid strength is a multiplier
in_weather = SSweather.weather_event_instance.fire_smothering_strength
else
- acid_strength = initial(acid_strength)
+ acid_delay = initial(acid_delay)
in_weather = FALSE
/obj/effect/xenomorph/acid/proc/handle_barricade()
+ if(prob(in_weather))
+ visible_message(SPAN_XENOWARNING("Acid on \The [acid_t] subsides!"))
+ return NONE
var/obj/structure/barricade/cade = acid_t
- if(istype(cade))
- cade.take_acid_damage(barricade_damage)
-
-/obj/effect/xenomorph/acid/proc/tick(strength_t)
- set waitfor = 0
- if(!acid_t || !acid_t.loc)
- qdel(src)
+ cade.take_acid_damage(barricade_damage)
+ return (5 SECONDS)
+
+/obj/effect/xenomorph/acid/proc/handle_flashlight()
+ var/obj/item/device/flashlight/flare/flare = acid_t
+ if(flare.fuel <= 0)
+ return NONE
+ flare.fuel -= flare_damage
+ return (rand(15, 25) SECONDS) * acid_delay
+
+/obj/effect/xenomorph/acid/process(delta_time)
+ remaining -= delta_time * (1 SECONDS)
+ if(remaining > 0)
return
+ ticks_left -= 1
- if(istype(acid_t,/obj/structure/barricade))
- if(++ticks >= barricade_damage_ticks || prob(in_weather))
- visible_message(SPAN_XENOWARNING("Acid on \The [acid_t] subsides!"))
- qdel(src)
- return
- handle_barricade()
- sleep(50)
- .()
- return
- if(istype(acid_t, /obj/item/device/flashlight/flare))
- var/obj/item/device/flashlight/flare/flare = acid_t
- if(flare.fuel > 0) //Flares that have fuel in them lose fuel instead of melting
- flare.fuel -= flare_damage
- sleep(rand(150,250) * (acid_strength))
- return .()
-
- if(++ticks >= strength_t)
- visible_message(SPAN_XENODANGER("[acid_t] collapses under its own weight into a puddle of goop and undigested debris!"))
- playsound(src, "acid_hit", 25, TRUE)
-
- if(istype(acid_t, /turf))
- if(istype(acid_t, /turf/closed/wall))
- var/turf/closed/wall/W = acid_t
- new /obj/effect/acid_hole (W)
- else
- var/turf/T = acid_t
- T.ScrapeAway()
- else if (istype(acid_t, /obj/structure/girder))
- var/obj/structure/girder/G = acid_t
- G.dismantle()
- else if(istype(acid_t, /obj/structure/window/framed))
- var/obj/structure/window/framed/WF = acid_t
- WF.deconstruct(disassembled = FALSE)
- else if(istype(acid_t,/obj/item/explosive/plastic))
- qdel(acid_t)
+ var/return_delay = NONE
+ if(istype(acid_t, /obj/structure/barricade))
+ return_delay = handle_barricade()
+ else if(istype(acid_t, /obj/item/device/flashlight/flare))
+ return_delay = handle_flashlight()
+ else
+ return_delay = (rand(20, 30) SECONDS) * acid_delay
- else
- if(acid_t.contents.len) //Hopefully won't auto-delete things inside melted stuff..
- for(var/mob/M in acid_t.contents)
- if(acid_t.loc) M.forceMove(acid_t.loc)
- QDEL_NULL(acid_t)
+ if(!ticks_left)
+ finish_melting()
+ return PROCESS_KILL
+ if(!return_delay)
qdel(src)
- return
+ return PROCESS_KILL
- switch(strength_t - ticks)
+ remaining = return_delay
+
+ switch(ticks_left)
if(6) visible_message(SPAN_XENOWARNING("\The [acid_t] is barely holding up against the acid!"))
if(4) visible_message(SPAN_XENOWARNING("\The [acid_t]\s structure is being melted by the acid!"))
if(2) visible_message(SPAN_XENOWARNING("\The [acid_t] is struggling to withstand the acid!"))
if(0 to 1) visible_message(SPAN_XENOWARNING("\The [acid_t] begins to crumble under the acid!"))
- sleep(rand(200,300) * (acid_strength))
- .()
+/obj/effect/xenomorph/acid/proc/finish_melting()
+ visible_message(SPAN_XENODANGER("[acid_t] collapses under its own weight into a puddle of goop and undigested debris!"))
+ playsound(src, "acid_hit", 25, TRUE)
+
+ if(istype(acid_t, /turf))
+ if(istype(acid_t, /turf/closed/wall))
+ var/turf/closed/wall/wall = acid_t
+ new /obj/effect/acid_hole(wall)
+ else
+ var/turf/turf = acid_t
+ turf.ScrapeAway()
+
+ else if (istype(acid_t, /obj/structure/girder))
+ var/obj/structure/girder/girder = acid_t
+ girder.dismantle()
+
+ else if(istype(acid_t, /obj/structure/window/framed))
+ var/obj/structure/window/framed/window = acid_t
+ window.deconstruct(disassembled = FALSE)
+
+ else if(istype(acid_t, /obj/structure/barricade))
+ pass() // Don't delete it, just damaj
+
+ else
+ for(var/mob/mob in acid_t)
+ mob.forceMove(loc)
+ qdel(acid_t)
+ qdel(src)
/obj/effect/xenomorph/boiler_bombard
name = "???"
diff --git a/code/game/objects/effects/decals/cleanable/blood/tracks.dm b/code/game/objects/effects/decals/cleanable/blood/tracks.dm
index 32593f6f30..c764259a62 100644
--- a/code/game/objects/effects/decals/cleanable/blood/tracks.dm
+++ b/code/game/objects/effects/decals/cleanable/blood/tracks.dm
@@ -14,6 +14,9 @@
var/list/overlay_images = list()
+ /// Amount of pixels to shift either way in an attempt to make the tracks more organic
+ var/transverse_amplitude = 3
+
/obj/effect/decal/cleanable/blood/tracks/Crossed()
return
@@ -21,19 +24,27 @@
return FALSE
/obj/effect/decal/cleanable/blood/tracks/proc/add_tracks(direction, tcolor, out)
- var/image/I = image(icon = icon, icon_state = out ? going_state : coming_state, dir = direction)
- var/mutable_appearance/MA = new(I)
+ var/image/image = image(icon = icon, icon_state = out ? going_state : coming_state, dir = direction)
+
+ var/mutable_appearance/MA = new(image)
MA.color = tcolor
MA.layer = layer
MA.appearance_flags |= RESET_COLOR
- I.appearance = MA
+ image.appearance = MA
+
+ switch(direction)
+ if(NORTH, SOUTH)
+ image.pixel_x += rand(-transverse_amplitude, transverse_amplitude)
+ if(EAST, WEST)
+ image.pixel_y += rand(-transverse_amplitude, transverse_amplitude)
+
if(out)
- LAZYSET(steps_out, "[direction]", I)
+ LAZYSET(steps_out, "[direction]", image)
else
- LAZYSET(steps_in, "[direction]", I)
+ LAZYSET(steps_in, "[direction]", image)
- overlay_images += I
- cleanable_turf.overlays += I
+ overlay_images += image
+ cleanable_turf.overlays += image
/obj/effect/decal/cleanable/blood/tracks/clear_overlay()
if(length(overlay_images))
diff --git a/code/game/objects/effects/glowshroom.dm b/code/game/objects/effects/glowshroom.dm
index bebe0ec8b2..56c6ae45cd 100644
--- a/code/game/objects/effects/glowshroom.dm
+++ b/code/game/objects/effects/glowshroom.dm
@@ -95,8 +95,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
/obj/effect/glowshroom/fire_act(exposed_temperature, exposed_volume)
if(exposed_temperature > 300)
diff --git a/code/game/objects/explosion_recursive.dm b/code/game/objects/explosion_recursive.dm
index 1f52901c21..82566c8030 100644
--- a/code/game/objects/explosion_recursive.dm
+++ b/code/game/objects/explosion_recursive.dm
@@ -149,7 +149,7 @@ explosion resistance exactly as much as their health
switch(angle) //this reduces power when the explosion is going around corners
if (0)
- //no change
+ pass()
if (45)
if(spread_power >= 0)
spread_power *= 0.75
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index 2d142789fd..bf24b07582 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -156,6 +156,11 @@
var/list/inherent_traits
+ /// How much to offset the item randomly either way alongside X visually
+ var/ground_offset_x = 0
+ /// How much to offset the item randomly either way alongside Y visually
+ var/ground_offset_y = 0
+
/obj/item/Initialize(mapload, ...)
. = ..()
@@ -175,6 +180,8 @@
if(flags_item & MOB_LOCK_ON_EQUIP)
AddComponent(/datum/component/id_lock)
+ scatter_item()
+
/obj/item/Destroy()
flags_item &= ~DELONDROP //to avoid infinite loop of unequip, delete, unequip, delete.
flags_item &= ~NODROP //so the item is properly unequipped if on a mob.
@@ -268,7 +275,6 @@ cases. Override_icon_state should be a list.*/
size = "huge"
if(SIZE_MASSIVE)
size = "massive"
- else
. += "This is a [blood_color ? blood_color != "#030303" ? "bloody " : "oil-stained " : ""][icon2html(src, user)][src.name]. It is a [size] item."
if(desc)
. += desc
@@ -459,6 +465,11 @@ cases. Override_icon_state should be a list.*/
/obj/item/proc/item_action_slot_check(mob/user, slot)
return TRUE
+/obj/item/proc/scatter_item()
+ if(!pixel_x && !pixel_y)
+ pixel_x = rand(-ground_offset_x, ground_offset_x)
+ pixel_y = rand(-ground_offset_y, ground_offset_y)
+
// The mob M is attempting to equip this item into the slot passed through as 'slot'. return TRUE if it can do this and 0 if it can't.
// If you are making custom procs but would like to retain partial or complete functionality of this one, include a 'return ..()' to where you want this to happen.
// Set disable_warning to TRUE if you wish it to not give you outputs.
diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm
index a5e0eafe2f..1cf6b52da1 100644
--- a/code/game/objects/items/cards_ids.dm
+++ b/code/game/objects/items/cards_ids.dm
@@ -61,7 +61,7 @@
desc = "A slice of encoded compressed fiber glass. Used for identification and access control."
icon_state = "id"
item_state = "card-id"
- var/access = list()
+ var/list/access
var/faction = FACTION_NEUTRAL
var/list/faction_group
@@ -92,6 +92,10 @@
var/modification_log = list()
+/obj/item/card/id/Initialize(mapload, ...)
+ . = ..()
+
+ access = list()
/obj/item/card/id/Destroy()
. = ..()
diff --git a/code/game/objects/items/devices/coins.dm b/code/game/objects/items/devices/coins.dm
index 6ab79e3216..7343d14ad1 100644
--- a/code/game/objects/items/devices/coins.dm
+++ b/code/game/objects/items/devices/coins.dm
@@ -11,11 +11,8 @@
black_market_value = 10
var/string_attached
var/sides = 2
-
-/obj/item/coin/Initialize()
- . = ..()
- pixel_x = rand(0,16)-8
- pixel_y = rand(0,8)-8
+ ground_offset_x = 8
+ ground_offset_y = 4
/obj/item/coin/gold
name = "gold coin"
diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm
index e795f4e28d..114964464a 100644
--- a/code/game/objects/items/devices/flashlight.dm
+++ b/code/game/objects/items/devices/flashlight.dm
@@ -12,6 +12,8 @@
light_range = 5
light_power = 1
+ ground_offset_x = 2
+ ground_offset_y = 6
actions_types = list(/datum/action/item_action)
var/on = FALSE
@@ -33,6 +35,11 @@
else
icon_state = initial(icon_state)
+/obj/item/device/flashlight/animation_spin(speed = 5, loop_amount = -1, clockwise = TRUE, sections = 3, angular_offset = 0, pixel_fuzz = 0)
+ clockwise = pick(TRUE, FALSE)
+ angular_offset = rand(360)
+ return ..()
+
/obj/item/device/flashlight/proc/update_brightness(mob/user = null)
if(on)
set_light_range(light_range)
@@ -296,8 +303,6 @@
// Causes flares to stop with a rotation offset for visual purposes
/obj/item/device/flashlight/flare/animation_spin(speed = 5, loop_amount = -1, clockwise = TRUE, sections = 3, angular_offset = 0, pixel_fuzz = 0)
- clockwise = pick(TRUE, FALSE)
- angular_offset = rand(360)
pixel_fuzz = 16
return ..()
/obj/item/device/flashlight/flare/pickup()
diff --git a/code/game/objects/items/devices/motion_detector.dm b/code/game/objects/items/devices/motion_detector.dm
index 9776eae11c..99b11d1ff6 100644
--- a/code/game/objects/items/devices/motion_detector.dm
+++ b/code/game/objects/items/devices/motion_detector.dm
@@ -5,6 +5,9 @@
#define MOTION_DETECTOR_RANGE_LONG 14
#define MOTION_DETECTOR_RANGE_SHORT 7
+#define MOTION_DETECTOR_BASE_COOLDOWN (1 SECONDS)
+#define MOTION_DETECTOR_RANGE_LONG_MULTIPLIER 2.5
+
/obj/effect/detector_blip
icon = 'icons/obj/items/marine-items.dmi'
icon_state = "detector_blip"
@@ -30,7 +33,6 @@
w_class = SIZE_MEDIUM
var/active = 0
var/recycletime = 120
- var/long_range_cooldown = 2
var/blip_type = "detector"
var/iff_signal = FACTION_MARINE
actions_types = list(/datum/action/item_action)
@@ -39,6 +41,9 @@
var/long_range_locked = FALSE //only long-range MD
var/ping_overlay
+ /// Handles our cooldowns regarding pings
+ COOLDOWN_DECLARE(ping_cooldown)
+
/obj/item/device/motiondetector/proc/get_help_text()
. = "Blue bubble-like indicators on your HUD will show pings locations or direction to them. The device screen will show the amount of unidentified movements detected (up to 9). Has two modes: slow long-range [SPAN_HELPFUL("([MOTION_DETECTOR_RANGE_LONG] tiles)")] and fast short-range [SPAN_HELPFUL("([MOTION_DETECTOR_RANGE_SHORT] tiles)")]. Use [SPAN_HELPFUL("Alt + Click")] on the device to switch between modes. Using the device on the adjacent multitile vehicle will start the process of recalibrating and scanning vehicle interior for unidentified movements inside."
@@ -136,7 +141,7 @@
else if(user)
to_chat(user, SPAN_NOTICE("You activate \the [src]."))
playsound(loc, 'sound/items/detector_turn_on.ogg', 30, FALSE, 5, 2)
- START_PROCESSING(SSobj, src)
+ START_PROCESSING(SSfastobj, src)
/obj/item/device/motiondetector/proc/turn_off(mob/user, forced = FALSE)
if(forced)
@@ -146,34 +151,37 @@
scanning = FALSE // safety if MD runtimes in scan and stops scanning
icon_state = "[initial(icon_state)]"
playsound(loc, 'sound/items/detector_turn_off.ogg', 30, FALSE, 5, 2)
- STOP_PROCESSING(SSobj, src)
+ STOP_PROCESSING(SSfastobj, src)
/obj/item/device/motiondetector/Destroy()
- STOP_PROCESSING(SSobj, src)
+ STOP_PROCESSING(SSfastobj, src)
for(var/to_delete in blip_pool)
qdel(blip_pool[to_delete])
blip_pool.Remove(to_delete)
blip_pool = null
return ..()
-/obj/item/device/motiondetector/process()
+/obj/item/device/motiondetector/process(delta_time)
if(isturf(loc))
toggle_active(null, TRUE)
+
if(!active)
- STOP_PROCESSING(SSobj, src)
+ STOP_PROCESSING(SSfastobj, src)
return
+
recycletime--
if(!recycletime)
recycletime = initial(recycletime)
refresh_blip_pool()
- if(!detector_mode)
- long_range_cooldown--
- if(long_range_cooldown) return
- else long_range_cooldown = initial(long_range_cooldown)
+ if(!COOLDOWN_FINISHED(src, ping_cooldown))
+ return
scan()
+ var/next_ping_cooldown = MOTION_DETECTOR_BASE_COOLDOWN * (detector_mode ? 1 : MOTION_DETECTOR_RANGE_LONG_MULTIPLIER)
+ COOLDOWN_START(src, ping_cooldown, next_ping_cooldown)
+
/obj/item/device/motiondetector/proc/refresh_blip_pool()
for(var/X in blip_pool) //we dump and remake the blip pool every few minutes
if(blip_pool[X]) //to clear blips assigned to mobs that are long gone.
diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm
index 2831e759f0..1f7c20a648 100644
--- a/code/game/objects/items/devices/radio/headset.dm
+++ b/code/game/objects/items/devices/radio/headset.dm
@@ -493,6 +493,7 @@
initial_keys = list(/obj/item/device/encryptionkey/mcom)
volume = RADIO_VOLUME_CRITICAL
multibroadcast_cooldown = LOW_MULTIBROADCAST_COOLDOWN
+ frequency = ALPHA_FREQ
/obj/item/device/radio/headset/almayer/mcom/alt
initial_keys = list(/obj/item/device/encryptionkey/mcom/alt)
@@ -566,7 +567,9 @@
volume = RADIO_VOLUME_CRITICAL
/obj/item/device/radio/headset/almayer/marine
- initial_keys = list(/obj/item/device/encryptionkey/public)
+ name = "marine radio headset"
+ desc = "A standard marine radio headset. When worn, grants access to Squad Leader tracker. Click tracker with empty hand to open Squad Info window."
+ frequency = ALPHA_FREQ
//############################## ALPHA ###############################
/obj/item/device/radio/headset/almayer/marine/alpha
diff --git a/code/game/objects/items/explosives/grenades/grenade.dm b/code/game/objects/items/explosives/grenades/grenade.dm
index 7e98e98199..6b79323367 100644
--- a/code/game/objects/items/explosives/grenades/grenade.dm
+++ b/code/game/objects/items/explosives/grenades/grenade.dm
@@ -20,12 +20,12 @@
var/hand_throwable = TRUE
harmful = TRUE //Is it harmful? Are they banned for synths?
antigrief_protection = TRUE //Should it be checked by antigrief?
+ ground_offset_x = 7
+ ground_offset_y = 6
/obj/item/explosive/grenade/Initialize()
. = ..()
det_time = max(0, rand(det_time - 5, det_time + 5))
- pixel_y = rand(-6, 6)
- pixel_x = rand(-7, 7)
/obj/item/explosive/grenade/proc/can_use_grenade(mob/living/carbon/human/user)
if(!hand_throwable)
diff --git a/code/game/objects/items/explosives/warhead.dm b/code/game/objects/items/explosives/warhead.dm
index 5dfdf2a41e..9825d74831 100644
--- a/code/game/objects/items/explosives/warhead.dm
+++ b/code/game/objects/items/explosives/warhead.dm
@@ -2,11 +2,8 @@
icon = 'icons/obj/items/weapons/grenade.dmi'
customizable = TRUE
allowed_sensors = list() //We only need a detonator
-
-/obj/item/explosive/warhead/Initialize(mapload, ...)
- . = ..()
- pixel_y = rand(-6, 6)
- pixel_x = rand(-7, 7)
+ ground_offset_x = 7
+ ground_offset_y = 6
/obj/item/explosive/warhead/rocket
name = "84mm rocket warhead"
diff --git a/code/game/objects/items/handheld_distress_beacon.dm b/code/game/objects/items/handheld_distress_beacon.dm
index c11a7a57c3..19a64c2c37 100644
--- a/code/game/objects/items/handheld_distress_beacon.dm
+++ b/code/game/objects/items/handheld_distress_beacon.dm
@@ -64,3 +64,47 @@
recipient = "Anchorpoint Station"
ert_full_name = list("CMB - Patrol Team - Marshals in Distress (Friendly)", "CMB - Anchorpoint Station Colonial Marine QRF (Friendly)")
ert_short_name = list("SEND CMB", "SEND QRF")
+
+/// Generic beacon for objectives
+/obj/item/handheld_beacon
+ name = "handheld beacon"
+ desc = "A standard handheld beacon. Generally used by teams who may be out of regular communications range but must signal for various reasons. This one is branded with a Weyland Yutani symbol and sold en masse."
+ icon = 'icons/obj/items/handheld_distress_beacon.dmi'
+ icon_state = "beacon_inactive"
+ w_class = SIZE_SMALL
+
+ /// Whether the beacon is active or not
+ var/active = FALSE
+
+/obj/item/handheld_beacon/get_examine_text(mob/user)
+ . = ..()
+
+ if(active)
+ . += "The beacon has been activated!"
+
+/obj/item/handheld_beacon/update_icon()
+ . = ..()
+
+ if(active)
+ icon_state = "beacon_active"
+ return
+ icon_state = initial(icon_state)
+
+/obj/item/handheld_beacon/attack_self(mob/user)
+ . = ..()
+
+ if(.)
+ return
+
+ active = !active
+ update_icon()
+
+ to_chat(user, SPAN_NOTICE("The beacon pings quietly and turns [active ? "on" : "off"]."))
+
+ if(!active)
+ return
+
+ for(var/client/admin_client in GLOB.admins)
+ if((R_ADMIN|R_MOD) & admin_client.admin_holder.rights)
+ playsound_client(admin_client,'sound/effects/sos-morse-code.ogg',10)
+ message_admins("[key_name(user)] has used [name]! [ADMIN_JMP_USER(user)]")
diff --git a/code/game/objects/items/props/rocks.dm b/code/game/objects/items/props/rocks.dm
index 1f040a473e..131fb23dda 100644
--- a/code/game/objects/items/props/rocks.dm
+++ b/code/game/objects/items/props/rocks.dm
@@ -10,6 +10,7 @@
icon_state = "rock"//go figure
desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava."
+ unslashable = TRUE
opacity = FALSE
density = TRUE
var/dir_list_full = list(1,2,4,8,5,6,9,10)
diff --git a/code/game/objects/items/reagent_containers/autoinjectors.dm b/code/game/objects/items/reagent_containers/autoinjectors.dm
index 46463e628c..248bdd7392 100644
--- a/code/game/objects/items/reagent_containers/autoinjectors.dm
+++ b/code/game/objects/items/reagent_containers/autoinjectors.dm
@@ -99,6 +99,15 @@
display_maptext = TRUE
maptext_label = "Ep"
+/obj/item/reagent_container/hypospray/autoinjector/adrenaline_concentrated
+ name = "epinephrine (concentrated) autoinjector"
+ chemname = "adrenaline_concentrated"
+ desc = "An autoinjector loaded with 3 uses of Epinephrine, better known as Adrenaline, a nerve stimulant useful in restarting the heart. In this concentrated form, it will prevent unconciousness but will cause minor suffocation."
+ amount_per_transfer_from_this = LOWM_REAGENTS_OVERDOSE * INJECTOR_PERCENTAGE_OF_OD
+ volume = (LOWM_REAGENTS_OVERDOSE * INJECTOR_PERCENTAGE_OF_OD) * INJECTOR_USES
+ display_maptext = TRUE
+ maptext_label = "Ep"
+
/obj/item/reagent_container/hypospray/autoinjector/dexalinp
name = "dexalin plus autoinjector"
chemname = "dexalinp"
diff --git a/code/game/objects/items/reagent_containers/blood_pack.dm b/code/game/objects/items/reagent_containers/blood_pack.dm
index 0879dcffdc..128c127082 100644
--- a/code/game/objects/items/reagent_containers/blood_pack.dm
+++ b/code/game/objects/items/reagent_containers/blood_pack.dm
@@ -74,14 +74,10 @@
update_beam()
return
- if(!skillcheck(user, SKILL_SURGERY, SKILL_SURGERY_NOVICE))
- to_chat(user, SPAN_WARNING("You don't know how to connect this!"))
- return
-
if(user.action_busy)
return
- if(!do_after(user, (1 SECONDS) * user.get_skill_duration_multiplier(SKILL_SURGERY), INTERRUPT_ALL, BUSY_ICON_FRIENDLY, attacked_mob, INTERRUPT_MOVED, BUSY_ICON_MEDICAL))
+ if(!do_after(user, skillcheck(user, SKILL_SURGERY, SKILL_SURGERY_NOVICE) ? (1 SECONDS) * user.get_skill_duration_multiplier(SKILL_SURGERY) : (8 SECONDS), INTERRUPT_ALL, BUSY_ICON_FRIENDLY, attacked_mob, INTERRUPT_MOVED, BUSY_ICON_MEDICAL))
to_chat(user, SPAN_WARNING("You were interrupted before you could finish!"))
return
diff --git a/code/game/objects/items/reagent_containers/food/snacks.dm b/code/game/objects/items/reagent_containers/food/snacks.dm
index 06a4d785e6..2892eb1113 100644
--- a/code/game/objects/items/reagent_containers/food/snacks.dm
+++ b/code/game/objects/items/reagent_containers/food/snacks.dm
@@ -182,10 +182,9 @@
return 0
var/inaccurate = 0
- if(W.sharp == IS_SHARP_ITEM_ACCURATE)
- else if(W.sharp == IS_SHARP_ITEM_BIG)
+ if(W.sharp == IS_SHARP_ITEM_BIG)
inaccurate = 1
- else
+ else if(W.sharp != IS_SHARP_ITEM_ACCURATE)
return 1
if ( !istype(loc, /obj/structure/surface/table) && \
(!isturf(src.loc) || \
@@ -206,7 +205,7 @@
SPAN_NOTICE("[user] crudely slices \the [src] with [W]!"), \
SPAN_NOTICE("You crudely slice \the [src] with your [W]!") \
)
- slices_lost = rand(1,min(1,round(slices_num/2)))
+ slices_lost = rand(1,max(1,round(slices_num/2)))
var/reagents_per_slice = reagents.total_volume/slices_num
for(var/i=1 to (slices_num-slices_lost))
var/obj/slice = new slice_path (src.loc)
diff --git a/code/game/objects/items/reagent_containers/glass.dm b/code/game/objects/items/reagent_containers/glass.dm
index 240809b785..df344506c7 100644
--- a/code/game/objects/items/reagent_containers/glass.dm
+++ b/code/game/objects/items/reagent_containers/glass.dm
@@ -363,11 +363,8 @@
matter = list()
possible_transfer_amounts = list(5,10,15,25,30)
flags_atom = FPRINT|OPENCONTAINER
-
-/obj/item/reagent_container/glass/beaker/vial/Initialize()
- . = ..()
- pixel_y = rand(-8, 8)
- pixel_x = rand(-9, 9)
+ ground_offset_x = 9
+ ground_offset_y = 8
/obj/item/reagent_container/glass/beaker/vial/tricordrazine
name = "tricordrazine vial"
diff --git a/code/game/objects/items/reagent_containers/pill.dm b/code/game/objects/items/reagent_containers/pill.dm
index de86ad07f5..6c71d8be3c 100644
--- a/code/game/objects/items/reagent_containers/pill.dm
+++ b/code/game/objects/items/reagent_containers/pill.dm
@@ -23,6 +23,8 @@
w_class = SIZE_TINY
volume = 60
reagent_desc_override = TRUE //it has a special examining mechanic
+ ground_offset_x = 7
+ ground_offset_y = 7
var/identificable = TRUE //can medically trained people tell what's in it?
var/pill_desc = "An unknown pill." // The real description of the pill, shown when examined by a medically trained person
var/pill_icon_class = "random" // Pills with the same icon class share icons
diff --git a/code/game/objects/items/reagent_containers/reagent_container.dm b/code/game/objects/items/reagent_containers/reagent_container.dm
index eddbf5197a..e0561d5a7e 100644
--- a/code/game/objects/items/reagent_containers/reagent_container.dm
+++ b/code/game/objects/items/reagent_containers/reagent_container.dm
@@ -14,6 +14,8 @@
var/transparent = FALSE //can we see what's in it?
var/reagent_desc_override = FALSE //does it have a special examining mechanic that should override the normal /reagent_containers examine proc?
actions_types = list(/datum/action/item_action/reagent_container/set_transfer_amount)
+ ground_offset_x = 7
+ ground_offset_y = 7
/obj/item/reagent_container/Initialize()
if(!possible_transfer_amounts)
diff --git a/code/game/objects/items/stacks/cable_coil.dm b/code/game/objects/items/stacks/cable_coil.dm
index 9135c793cd..e846979c00 100644
--- a/code/game/objects/items/stacks/cable_coil.dm
+++ b/code/game/objects/items/stacks/cable_coil.dm
@@ -20,14 +20,14 @@
attack_verb = list("whipped", "lashed", "disciplined", "flogged")
stack_id = "cable coil"
attack_speed = 3
+ ground_offset_x = 2
+ ground_offset_y = 2
/obj/item/stack/cable_coil/Initialize(mapload, length = MAXCOIL, param_color = null)
. = ..()
src.amount = length
if (param_color) // It should be red by default, so only recolor it if parameter was specified.
color = param_color
- pixel_x = rand(-2,2)
- pixel_y = rand(-2,2)
updateicon()
update_wclass()
@@ -276,8 +276,6 @@
/obj/item/stack/cable_coil/cut/Initialize()
. = ..()
src.amount = rand(1,2)
- pixel_x = rand(-2,2)
- pixel_y = rand(-2,2)
updateicon()
update_wclass()
diff --git a/code/game/objects/items/stacks/nanopaste.dm b/code/game/objects/items/stacks/nanopaste.dm
index 32e9a03046..754a36c601 100644
--- a/code/game/objects/items/stacks/nanopaste.dm
+++ b/code/game/objects/items/stacks/nanopaste.dm
@@ -40,7 +40,7 @@
H.pain.recalculate_pain()
H.updatehealth()
use(1)
- var/others_msg = "\The [user] applies some nanite paste at[user != M ? " \the [M]'s" : " \the"] [S.display_name] with \the [src]." // Needs to create vars for these messages because macro doesn't work otherwise
+ var/others_msg = "\The [user] applies some nanite paste at[user != M ? " \the [M]'s" : " the"] [S.display_name] with \the [src]." // Needs to create vars for these messages because macro doesn't work otherwise
var/user_msg = "You apply some nanite paste at [user == M ? "your" : "[M]'s"] [S.display_name]."
user.visible_message(SPAN_NOTICE("[others_msg]"),\
SPAN_NOTICE("[user_msg]"))
diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm
index f6a8d02c3e..07345dcdc0 100644
--- a/code/game/objects/items/stacks/sheets/sheet_types.dm
+++ b/code/game/objects/items/stacks/sheets/sheet_types.dm
@@ -69,6 +69,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \
sheettype = "metal"
stack_id = "metal"
+
/obj/item/stack/sheet/metal/small_stack
amount = STACK_10
@@ -114,6 +115,8 @@ var/global/list/datum/stack_recipe/plasteel_recipes = list ( \
amount_sprites = TRUE
sheettype = "plasteel"
stack_id = "plasteel"
+ ground_offset_x = 4
+ ground_offset_y = 5
/obj/item/stack/sheet/plasteel/New(loc, amount=null)
recipes = plasteel_recipes
diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm
index 3b65811b05..95c5f181cd 100644
--- a/code/game/objects/items/storage/backpack.dm
+++ b/code/game/objects/items/storage/backpack.dm
@@ -487,115 +487,41 @@
desc = "A heavy-duty chestrig used by some USCM technicians."
icon_state = "marinesatch_techi"
-GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/rto)
-
/obj/item/storage/backpack/marine/satchel/rto
name = "\improper USCM Radio Telephone Pack"
desc = "A heavy-duty pack, used for telecommunications between central command. Commonly carried by RTOs."
icon_state = "rto_backpack"
item_state = "rto_backpack"
has_gamemode_skin = FALSE
- actions_types = list(/datum/action/item_action/rto_pack/use_phone)
flags_item = ITEM_OVERRIDE_NORTHFACE
- var/obj/structure/transmitter/internal/internal_transmitter
-
var/phone_category = PHONE_MARINE
var/list/networks_receive = list(FACTION_MARINE)
var/list/networks_transmit = list(FACTION_MARINE)
- var/base_icon
-
-/datum/action/item_action/rto_pack/use_phone/New(mob/living/user, obj/item/holder)
- ..()
- name = "Use Phone"
- button.name = name
- button.overlays.Cut()
- var/image/IMG = image('icons/obj/items/misc.dmi', button, "rpb_phone")
- button.overlays += IMG
-
-/datum/action/item_action/rto_pack/use_phone/action_activate()
- for(var/obj/item/storage/backpack/marine/satchel/rto/radio_backpack in owner)
- radio_backpack.use_phone(owner)
- return
-
-/obj/item/storage/backpack/marine/satchel/rto/post_skin_selection()
- base_icon = icon_state
/obj/item/storage/backpack/marine/satchel/rto/Initialize()
. = ..()
- internal_transmitter = new(src)
- internal_transmitter.relay_obj = src
- internal_transmitter.phone_category = phone_category
- internal_transmitter.enabled = FALSE
- internal_transmitter.networks_receive = networks_receive
- internal_transmitter.networks_transmit = networks_transmit
- RegisterSignal(internal_transmitter, COMSIG_TRANSMITTER_UPDATE_ICON, PROC_REF(check_for_ringing))
- GLOB.radio_packs += src
-
-/obj/item/storage/backpack/marine/satchel/rto/proc/check_for_ringing()
- SIGNAL_HANDLER
- update_icon()
-
-/obj/item/storage/backpack/marine/satchel/rto/update_icon()
- . = ..()
- if(!internal_transmitter)
- return
-
- if(!internal_transmitter.attached_to \
- || internal_transmitter.attached_to.loc != internal_transmitter)
- icon_state = "[base_icon]_ear"
- return
-
- if(internal_transmitter.caller)
- icon_state = "[base_icon]_ring"
- else
- icon_state = base_icon
-
-/obj/item/storage/backpack/marine/satchel/rto/forceMove(atom/dest)
- . = ..()
- if(isturf(dest))
- internal_transmitter.set_tether_holder(src)
- else
- internal_transmitter.set_tether_holder(loc)
-/obj/item/storage/backpack/marine/satchel/rto/Destroy()
- GLOB.radio_packs -= src
- qdel(internal_transmitter)
- return ..()
+ AddComponent(/datum/component/phone, phone_category = phone_category, networks_receive = networks_receive, networks_transmit = networks_transmit)
+ RegisterSignal(src, COMSIG_ATOM_PHONE_PICKED_UP, PROC_REF(phone_picked_up))
+ RegisterSignal(src, COMSIG_ATOM_PHONE_HUNG_UP, PROC_REF(phone_hung_up))
+ RegisterSignal(src, COMSIG_ATOM_PHONE_RINGING, PROC_REF(phone_ringing))
+ RegisterSignal(src, COMSIG_ATOM_PHONE_STOPPED_RINGING, PROC_REF(phone_stopped_ringing))
-/obj/item/storage/backpack/marine/satchel/rto/pickup(mob/user)
- . = ..()
- if(ishuman(user))
- var/mob/living/carbon/human/H = user
- if(H.comm_title)
- internal_transmitter.phone_id = "[H.comm_title] [H]"
- else if(H.job)
- internal_transmitter.phone_id = "[H.job] [H]"
- else
- internal_transmitter.phone_id = "[H]"
+/obj/item/storage/backpack/marine/satchel/rto/proc/phone_picked_up()
+ icon_state = PHONE_OFF_BASE_UNIT_ICON_STATE
- if(H.assigned_squad)
- internal_transmitter.phone_id += " ([H.assigned_squad.name])"
- else
- internal_transmitter.phone_id = "[user]"
-
- internal_transmitter.enabled = TRUE
-
-/obj/item/storage/backpack/marine/satchel/rto/dropped(mob/user)
- . = ..()
- internal_transmitter.phone_id = "[src]"
- internal_transmitter.enabled = FALSE
+/obj/item/storage/backpack/marine/satchel/rto/proc/phone_hung_up()
+ icon_state = PHONE_ON_BASE_UNIT_ICON_STATE
-/obj/item/storage/backpack/marine/satchel/rto/proc/use_phone(mob/user)
- internal_transmitter.attack_hand(user)
+/obj/item/storage/backpack/marine/satchel/rto/proc/phone_ringing()
+ icon_state = PHONE_RINGING_ICON_STATE
-
-/obj/item/storage/backpack/marine/satchel/rto/attackby(obj/item/W, mob/user)
- if(internal_transmitter && internal_transmitter.attached_to == W)
- internal_transmitter.attackby(W, user)
- else
- . = ..()
+/obj/item/storage/backpack/marine/satchel/rto/proc/phone_stopped_ringing()
+ if(icon_state == PHONE_OFF_BASE_UNIT_ICON_STATE)
+ return
+ icon_state = PHONE_ON_BASE_UNIT_ICON_STATE
/obj/item/storage/backpack/marine/satchel/rto/upp_net
name = "\improper UPP Radio Telephone Pack"
@@ -606,7 +532,6 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r
name = "\improper USCM Small Radio Telephone Pack"
max_storage_space = 10
-
/obj/item/storage/backpack/marine/satchel/rto/small/upp_net
name = "\improper UPP Radio Telephone Pack"
networks_receive = list(FACTION_UPP)
diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm
index 71edc21e29..d2451ff29a 100644
--- a/code/game/objects/items/storage/belt.dm
+++ b/code/game/objects/items/storage/belt.dm
@@ -245,7 +245,6 @@
new /obj/item/stack/medical/advanced/bruise_pack(src)
new /obj/item/stack/medical/advanced/ointment(src)
new /obj/item/stack/medical/advanced/ointment(src)
- new /obj/item/reagent_container/hypospray/autoinjector/adrenaline(src)
new /obj/item/reagent_container/hypospray/autoinjector/dexalinp(src)
new /obj/item/reagent_container/hypospray/autoinjector/oxycodone(src)
new /obj/item/storage/pill_bottle/bicaridine(src)
diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm
index ef2bcfb721..b4a6c3a8c1 100644
--- a/code/game/objects/items/storage/large_holster.dm
+++ b/code/game/objects/items/storage/large_holster.dm
@@ -326,7 +326,7 @@
/obj/item/storage/large_holster/fuelpack/get_examine_text(mob/user)
. = ..()
if(contents.len)
- . += "It is storing \a M240-T incinerator unit."
+ . += "It is storing a M240-T incinerator unit."
if (get_dist(user, src) <= 1)
if(fuel)
. += "The [fuel.caliber] currently contains: [round(fuel.get_ammo_percent())]% fuel."
diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm
index 6d49db9950..5f671037ae 100644
--- a/code/game/objects/items/storage/pouch.dm
+++ b/code/game/objects/items/storage/pouch.dm
@@ -168,7 +168,7 @@
name = "synth survival pouch"
desc = "An emergency pouch given to synthetics in the event of an emergency."
icon_state = "tools"
- storage_slots = 7
+ storage_slots = 6
max_w_class = SIZE_MEDIUM
can_hold = list(
/obj/item/device/flashlight,
@@ -181,7 +181,6 @@
)
/obj/item/storage/pouch/survival/synth/full/fill_preset_inventory()
- new /obj/item/device/flashlight(src)
new /obj/item/tool/crowbar/red(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/stack/cable_coil(src)
@@ -1151,7 +1150,7 @@
/obj/item/storage/pouch/tools
name = "tools pouch"
desc = "It's designed to hold maintenance tools - screwdriver, wrench, cable coil, etc. It also has a hook for an entrenching tool or light replacer."
- storage_slots = 4
+ storage_slots = 5
max_w_class = SIZE_MEDIUM
icon_state = "tools"
can_hold = list(
@@ -1193,30 +1192,35 @@
new /obj/item/tool/wirecutters(src)
new /obj/item/device/multitool(src)
new /obj/item/tool/wrench(src)
+ new /obj/item/stack/cable_coil(src)
/obj/item/storage/pouch/tools/pfc/fill_preset_inventory()
new /obj/item/tool/screwdriver(src)
new /obj/item/tool/wirecutters(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/tool/wrench(src)
+ new /obj/item/stack/cable_coil(src)
/obj/item/storage/pouch/tools/synth/fill_preset_inventory()
new /obj/item/tool/screwdriver(src)
new /obj/item/device/multitool(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/stack/cable_coil(src)
+ new /obj/item/stack/cable_coil(src)
/obj/item/storage/pouch/tools/tank/fill_preset_inventory()
new /obj/item/tool/crowbar(src)
new /obj/item/tool/wrench(src)
new /obj/item/tool/weldingtool/hugetank(src)
new /obj/item/tool/extinguisher/mini(src)
+ new /obj/item/stack/cable_coil(src)
/obj/item/storage/pouch/tools/mortar/fill_preset_inventory()
new /obj/item/tool/crowbar(src)
new /obj/item/tool/wrench(src)
new /obj/item/tool/wirecutters(src)
new /obj/item/tool/shovel/etool(src)
+ new /obj/item/stack/cable_coil(src)
/obj/item/storage/pouch/tools/tactical/full/fill_preset_inventory()
new /obj/item/tool/screwdriver/tactical(src)
@@ -1233,6 +1237,7 @@
new /obj/item/tool/wirecutters(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/tool/wrench(src)
+ new /obj/item/stack/cable_coil(src)
/obj/item/storage/pouch/sling
name = "sling strap"
diff --git a/code/game/objects/structures/barricade/barricade.dm b/code/game/objects/structures/barricade/barricade.dm
index 0ca2ccb1dd..5a72ec33ea 100644
--- a/code/game/objects/structures/barricade/barricade.dm
+++ b/code/game/objects/structures/barricade/barricade.dm
@@ -78,7 +78,7 @@
switch(dir)
if(SOUTH)
layer = ABOVE_MOB_LAYER
- else if(NORTH)
+ if(NORTH)
layer = initial(layer) - 0.01
else
layer = initial(layer)
diff --git a/code/game/objects/structures/barricade/handrail.dm b/code/game/objects/structures/barricade/handrail.dm
index ea10dc7256..ae166dbbf9 100644
--- a/code/game/objects/structures/barricade/handrail.dm
+++ b/code/game/objects/structures/barricade/handrail.dm
@@ -24,7 +24,7 @@
switch(dir)
if(SOUTH)
layer = ABOVE_MOB_LAYER
- else if(NORTH)
+ if(NORTH)
layer = initial(layer) - 0.01
else
layer = initial(layer)
diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm
index a4666c633a..0289397b45 100644
--- a/code/game/objects/structures/bedsheet_bin.dm
+++ b/code/game/objects/structures/bedsheet_bin.dm
@@ -83,6 +83,7 @@ LINEN BINS
desc = "A linen bin. It looks rather cosy."
icon = 'icons/obj/structures/structures.dmi'
icon_state = "linenbin-full"
+ unslashable = TRUE
anchored = TRUE
var/amount = 20
var/list/sheets = list()
diff --git a/code/game/objects/structures/bookcase.dm b/code/game/objects/structures/bookcase.dm
index c71b2853ea..6d6ee9ffa3 100644
--- a/code/game/objects/structures/bookcase.dm
+++ b/code/game/objects/structures/bookcase.dm
@@ -6,6 +6,7 @@
anchored = TRUE
density = TRUE
opacity = TRUE
+ unslashable = TRUE
/obj/structure/bookcase/Initialize()
. = ..()
@@ -58,8 +59,6 @@
contents_explosion(severity)
deconstruct(FALSE)
return
- else
- return
/obj/structure/bookcase/update_icon()
if(contents.len < 5)
diff --git a/code/game/objects/structures/cargo_container.dm b/code/game/objects/structures/cargo_container.dm
index b5c38874cf..2ea0f4e730 100644
--- a/code/game/objects/structures/cargo_container.dm
+++ b/code/game/objects/structures/cargo_container.dm
@@ -8,6 +8,7 @@
health = 200
opacity = TRUE
anchored = TRUE
+ unslashable = TRUE
//Note, for Watatsumi, Grant, and Arious, "left" and "leftmid" are both the left end of the container, but "left" is generic and "leftmid" has the Sat Mover mark on it
/obj/structure/cargo_container/watatsumi
name = "Watatsumi Cargo Container"
diff --git a/code/game/objects/structures/catwalk.dm b/code/game/objects/structures/catwalk.dm
index 00db652049..6aa696d6c7 100644
--- a/code/game/objects/structures/catwalk.dm
+++ b/code/game/objects/structures/catwalk.dm
@@ -7,6 +7,7 @@
var/covered = 1 //1 for theres the cover, 0 if there isn't.
unslashable = TRUE
unacidable = TRUE
+ unslashable = TRUE
layer = CATWALK_LAYER
/obj/structure/catwalk/Initialize()
diff --git a/code/game/objects/structures/coathanger.dm b/code/game/objects/structures/coathanger.dm
index a2c0d213cc..05e9b8191e 100644
--- a/code/game/objects/structures/coathanger.dm
+++ b/code/game/objects/structures/coathanger.dm
@@ -3,6 +3,7 @@
desc = "Rack that holds coats."
icon = 'icons/obj/structures/props/misc.dmi'
icon_state = "coatrack0"
+ unslashable = TRUE
var/obj/item/clothing/suit/coat
var/list/allowed = list(/obj/item/clothing/suit/storage/labcoat, /obj/item/clothing/suit/storage/det_suit, /obj/item/clothing/suit/storage/bomber, /obj/item/clothing/suit/storage/bomber/alt)
diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm
index 4b00a940b8..ab37fb091b 100644
--- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm
@@ -125,3 +125,5 @@
new /obj/item/clothing/under/marine(src)
new /obj/item/clothing/shoes/marine/knife(src)
new /obj/item/clothing/shoes/marine/knife(src)
+ new /obj/item/device/radio/headset/almayer/marine(src)
+ new /obj/item/device/radio/headset/almayer/marine(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/personal.dm
index d6b4a35b04..b63936ef88 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/personal.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/personal.dm
@@ -4,15 +4,6 @@
req_access = list(ACCESS_CIVILIAN_PUBLIC)
var/registered_name = null
-/obj/structure/closet/secure_closet/personal/Initialize()
- . = ..()
- if(prob(50))
- new /obj/item/storage/backpack(src)
- else
- new /obj/item/storage/backpack/satchel/norm(src)
- new /obj/item/device/radio/headset( src )
-
-
/obj/structure/closet/secure_closet/personal/patient
name = "patient's closet"
@@ -44,12 +35,6 @@
else
icon_state = icon_opened
-/obj/structure/closet/secure_closet/personal/cabinet/Initialize()
- . = ..()
- contents = list()
- new /obj/item/storage/backpack/satchel( src )
- new /obj/item/device/radio/headset( src )
-
/obj/structure/closet/secure_closet/personal/attackby(obj/item/W as obj, mob/user as mob)
if (src.opened)
return ..()
diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
index 7848aaba48..b000fd5733 100644
--- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
@@ -51,8 +51,6 @@
new /obj/item/clothing/mask/gas(src)
new /obj/item/clothing/mask/gas(src)
new /obj/item/storage/firstaid/o2(src)
- if ("nothing")
- // doot
// teehee - Ah, tg coders...
if ("delete")
diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm
index 7c9faaf1a0..9f0417ccb3 100644
--- a/code/game/objects/structures/crates_lockers/crates.dm
+++ b/code/game/objects/structures/crates_lockers/crates.dm
@@ -130,8 +130,6 @@
contents_explosion(severity)
deconstruct(FALSE)
return
- else
- return
/obj/structure/closet/crate/alpha
name = "alpha squad crate"
diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm
index 8439a887e5..735e91aa53 100644
--- a/code/game/objects/structures/displaycase.dm
+++ b/code/game/objects/structures/displaycase.dm
@@ -6,6 +6,7 @@
density = TRUE
anchored = TRUE
unacidable = FALSE
+ unslashable = TRUE
health = 30
var/occupied = 1
var/destroyed = 0
diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm
index 7b54f0447f..7175dd9358 100644
--- a/code/game/objects/structures/extinguisher.dm
+++ b/code/game/objects/structures/extinguisher.dm
@@ -5,6 +5,7 @@
icon_state = "extinguisher"
anchored = TRUE
density = FALSE
+ unslashable = TRUE
var/obj/item/tool/extinguisher/has_extinguisher = new/obj/item/tool/extinguisher
var/opened = 0
var/base_icon
diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm
index 9c1f46de50..0f4ba9f6bd 100644
--- a/code/game/objects/structures/flora.dm
+++ b/code/game/objects/structures/flora.dm
@@ -32,6 +32,7 @@ PLANT_CUT_MACHETE = 3 = Needs at least a machete to be cut down
name = "plant"
anchored = TRUE
density = TRUE
+ unslashable = TRUE
var/icon_tag = null
var/variations = 1
var/cut_level = PLANT_NO_CUT
diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm
index 2d7f2b4682..e60a7f67be 100644
--- a/code/game/objects/structures/kitchen_spike.dm
+++ b/code/game/objects/structures/kitchen_spike.dm
@@ -7,6 +7,7 @@
desc = "A spike for collecting meat from animals"
density = TRUE
anchored = TRUE
+ unslashable = TRUE
var/meat = 0
var/occupied = 0
var/meattype = 0 // 0 - Nothing, 1 - Monkey, 2 - Xeno
diff --git a/code/game/objects/structures/lamarr_cage.dm b/code/game/objects/structures/lamarr_cage.dm
index fbae7a387a..8751c3f3aa 100644
--- a/code/game/objects/structures/lamarr_cage.dm
+++ b/code/game/objects/structures/lamarr_cage.dm
@@ -6,6 +6,7 @@
density = TRUE
anchored = TRUE
unacidable = FALSE
+ unslashable = TRUE
health = 30
var/occupied = 1
var/destroyed = 0
diff --git a/code/game/objects/structures/landing_signs.dm b/code/game/objects/structures/landing_signs.dm
index 9e9e83928c..f92148e344 100644
--- a/code/game/objects/structures/landing_signs.dm
+++ b/code/game/objects/structures/landing_signs.dm
@@ -6,6 +6,7 @@
bound_width = 64
bound_height = 64
density = TRUE
+ unslashable = TRUE
/obj/structure/lz_sign/lazarus_sign
name = "Lazarus Landing Sign"
diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm
index 38201e052c..81ec524026 100644
--- a/code/game/objects/structures/lattice.dm
+++ b/code/game/objects/structures/lattice.dm
@@ -5,6 +5,7 @@
icon_state = "latticefull"
density = FALSE
anchored = TRUE
+ unslashable = TRUE
layer = LATTICE_LAYER
plane = FLOOR_PLANE
// flags = CONDUCT
@@ -43,8 +44,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
/obj/structure/lattice/attackby(obj/item/C as obj, mob/user as mob)
diff --git a/code/game/objects/structures/lawnmower.dm b/code/game/objects/structures/lawnmower.dm
index af169139f6..2d4a25c08d 100644
--- a/code/game/objects/structures/lawnmower.dm
+++ b/code/game/objects/structures/lawnmower.dm
@@ -7,6 +7,7 @@
dir = WEST
anchored = FALSE
density = TRUE
+ unslashable = TRUE
layer = ABOVE_LYING_MOB_LAYER
/obj/structure/lawnmower/Move(atom/NewLoc, dir)
diff --git a/code/game/objects/structures/misc.dm b/code/game/objects/structures/misc.dm
index 89bc3da6ab..971f22a5e5 100644
--- a/code/game/objects/structures/misc.dm
+++ b/code/game/objects/structures/misc.dm
@@ -5,6 +5,7 @@
desc = "A stand with the empty body of a cyborg bolted to it."
density = TRUE
anchored = TRUE
+ unslashable = TRUE
health = 250
/obj/structure/showcase/initialize_pass_flags(datum/pass_flags_container/PF)
@@ -53,6 +54,7 @@
icon = 'icons/obj/objects.dmi'
icon_state = "target_a"
density = FALSE
+ unslashable = TRUE
health = 5000
/obj/structure/target/syndicate
@@ -71,6 +73,7 @@
icon_state = "monorail"
density = FALSE
anchored = TRUE
+ unslashable = TRUE
layer = ATMOS_PIPE_LAYER + 0.01
@@ -80,6 +83,7 @@
name = "Research thingies"
icon = 'icons/obj/structures/props/alien_autopsy.dmi'
icon_state = "jarshelf_9"
+ unslashable = TRUE
/obj/structure/xenoautopsy/jar_shelf
name = "jar shelf"
@@ -167,6 +171,7 @@
desc = "A heavy box used for storing ore."
density = TRUE
anchored = FALSE
+ unslashable = TRUE
/obj/structure/ore_box/initialize_pass_flags(datum/pass_flags_container/PF)
..()
@@ -176,6 +181,7 @@
/obj/structure/computer3frame
density = TRUE
anchored = FALSE
+ unslashable = TRUE
name = "computer frame"
icon = 'icons/obj/structures/machinery/stock_parts.dmi'
icon_state = "0"
@@ -273,7 +279,7 @@
. = ..()
if(over_object != usr || !Adjacent(usr))
return
-
+
if(!ishuman(usr))
return
diff --git a/code/game/objects/structures/morgue.dm b/code/game/objects/structures/morgue.dm
index dc8cf08d13..b05990725e 100644
--- a/code/game/objects/structures/morgue.dm
+++ b/code/game/objects/structures/morgue.dm
@@ -139,6 +139,7 @@
layer = OBJ_LAYER
var/obj/structure/morgue/linked_morgue = null
anchored = TRUE
+ unslashable = TRUE
throwpass = 1
var/bloody = FALSE
diff --git a/code/game/objects/structures/musician.dm b/code/game/objects/structures/musician.dm
index a9f00a50d4..78a07cc17f 100644
--- a/code/game/objects/structures/musician.dm
+++ b/code/game/objects/structures/musician.dm
@@ -12,6 +12,7 @@
icon_state = "pianobroken"
anchored = TRUE
density = TRUE
+ unslashable = TRUE
/obj/structure/device/broken_moog
name = "broken vintage synthesizer"
@@ -20,3 +21,4 @@
icon_state = "minimoogbroken"
anchored = TRUE
density = TRUE
+ unslashable = TRUE
diff --git a/code/game/objects/structures/noticeboard.dm b/code/game/objects/structures/noticeboard.dm
index 9d007a0c8c..73314bf91d 100644
--- a/code/game/objects/structures/noticeboard.dm
+++ b/code/game/objects/structures/noticeboard.dm
@@ -5,6 +5,7 @@
icon_state = "nboard00"
density = FALSE
anchored = TRUE
+ unslashable = TRUE
var/notices = 0
/obj/structure/noticeboard/Initialize()
diff --git a/code/game/objects/structures/pipes/pipes.dm b/code/game/objects/structures/pipes/pipes.dm
index 9f2b70c706..8459b9c100 100644
--- a/code/game/objects/structures/pipes/pipes.dm
+++ b/code/game/objects/structures/pipes/pipes.dm
@@ -4,6 +4,7 @@
anchored = TRUE
layer = ATMOS_DEVICE_LAYER
plane = FLOOR_PLANE
+ unslashable = TRUE
var/list/connected_to = list()
var/list/valid_directions = list(NORTH, SOUTH, EAST, WEST)
diff --git a/code/game/objects/structures/platforms.dm b/code/game/objects/structures/platforms.dm
index cfffbc90fb..ad1c88928f 100644
--- a/code/game/objects/structures/platforms.dm
+++ b/code/game/objects/structures/platforms.dm
@@ -14,6 +14,7 @@
breakable = FALSE
flags_atom = ON_BORDER
unacidable = TRUE
+ unslashable = TRUE
climb_delay = CLIMB_DELAY_SHORT
projectile_coverage = PROJECTILE_COVERAGE_NONE
@@ -91,6 +92,7 @@
breakable = FALSE
flags_atom = ON_BORDER
unacidable = TRUE
+ unslashable = TRUE
/obj/structure/platform_decoration/Initialize()
. = ..()
diff --git a/code/game/objects/structures/props.dm b/code/game/objects/structures/props.dm
index bd5610487e..9e5a70dc80 100644
--- a/code/game/objects/structures/props.dm
+++ b/code/game/objects/structures/props.dm
@@ -11,6 +11,7 @@
/obj/structure/prop/dam
density = TRUE
+ unslashable = TRUE
/obj/structure/prop/dam/drill
name = "mining drill"
@@ -448,6 +449,7 @@
desc = "A rack full of hard drives, micro-computers, and ethernet cables."
icon = 'icons/obj/structures/props/server_equipment.dmi'
icon_state = "rackframe"
+ unslashable = TRUE
density = TRUE
health = 150
@@ -553,6 +555,7 @@
bound_width = 64
bound_height = 64
desc = "A passive electrical component that controls where and which circuits power flows into."
+ unslashable = TRUE
//cash registers
@@ -562,6 +565,7 @@
icon = 'icons/obj/structures/props/cash_register.dmi'
icon_state = "cash_register"
density = TRUE
+ unslashable = TRUE
health = 50
/obj/structure/prop/cash_register/open
@@ -584,6 +588,7 @@
desc = "Like rebar, but in space."
icon = 'icons/obj/structures/structures.dmi'
icon_state = "structure_lattice"
+ unslashable = TRUE
density = TRUE //impassable by default
/obj/structure/prop/resin_prop
@@ -591,6 +596,7 @@
desc = "Well, it's useless now."
icon = 'icons/obj/resin_objects.dmi'
icon_state = "watertank"
+ unslashable = TRUE
//industructible props
/obj/structure/prop/invuln
@@ -652,6 +658,7 @@
health = 150
light_range = 6
light_on = TRUE
+ unslashable = TRUE
/// What obj this becomes when it gets to its next stage of construction / ignition
var/frame_type
/// What is used to progress to the next stage
@@ -855,6 +862,7 @@
desc = "Call a coder (or a mapper) you shouldn't be seeing this!"
icon = 'icons/obj/structures/props/ice_colony/props.dmi'
projectile_coverage = 10
+ unslashable = TRUE
/obj/structure/prop/ice_colony/soil_net
name = "soil net"
@@ -945,6 +953,7 @@
layer = 4
health = 50
anchored = TRUE
+ unslashable = TRUE
/obj/structure/prop/holidays/string_lights
name = "M1 pattern festive bulb strings"
@@ -1007,6 +1016,7 @@
icon = 'icons/obj/structures/props/generic_props.dmi'
icon_state = "tank"
density = TRUE
+ unslashable = TRUE
/obj/structure/prop/static_tank/fuel
desc = "It contains Decatuxole-Hypospaldirol. A non-volatile liquid fuel type that tastes like oranges. Can't really be used for anything outside of atmos-rocket boosters."
@@ -1291,6 +1301,7 @@
desc = "A console designed by the Hunters to assist in flight pathing and navigation."
icon = 'icons/obj/structures/machinery/computer.dmi'
icon_state = "overwatch"
+ unslashable = TRUE
density = TRUE
/obj/structure/prop/invuln/joey
diff --git a/code/game/objects/structures/reagent_dispensers.dm b/code/game/objects/structures/reagent_dispensers.dm
index 7dc6d883a2..6471dfa215 100644
--- a/code/game/objects/structures/reagent_dispensers.dm
+++ b/code/game/objects/structures/reagent_dispensers.dm
@@ -119,8 +119,6 @@
if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY)
deconstruct(FALSE)
return
- else
- return
/obj/structure/reagent_dispensers/attack_hand()
if(!reagents || reagents.locked)
diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm
index ec277929fa..6c1582f112 100644
--- a/code/game/objects/structures/signs.dm
+++ b/code/game/objects/structures/signs.dm
@@ -3,6 +3,7 @@
anchored = TRUE
opacity = FALSE
density = FALSE
+ unslashable = TRUE
layer = WALL_OBJ_LAYER
/obj/structure/sign/ex_act(severity)
diff --git a/code/game/objects/structures/surface.dm b/code/game/objects/structures/surface.dm
index 3a2dbd3e8d..efc6900242 100644
--- a/code/game/objects/structures/surface.dm
+++ b/code/game/objects/structures/surface.dm
@@ -61,8 +61,7 @@
draw_item_overlays()
/obj/structure/surface/proc/detach_item(obj/item/O)
- O.pixel_x = initial(O.pixel_x)
- O.pixel_y = initial(O.pixel_y)
+ O.scatter_item()
UnregisterSignal(O, COMSIG_ATOM_DECORATED)
draw_item_overlays()
return
diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm
index cccc1211bf..27fdf94dac 100644
--- a/code/game/objects/structures/watercloset.dm
+++ b/code/game/objects/structures/watercloset.dm
@@ -8,6 +8,7 @@
density = FALSE
anchored = TRUE
can_buckle = TRUE
+ unslashable = TRUE
var/open = 0 //if the lid is up
var/cistern = 0 //if the cistern bit is open
var/w_items = 0 //the combined w_class of all the items in the cistern
@@ -177,6 +178,7 @@
icon_state = "urinal"
density = FALSE
anchored = TRUE
+ unslashable = TRUE
/obj/structure/urinal/attackby(obj/item/I, mob/living/user)
if(istype(I, /obj/item/grab))
@@ -424,6 +426,7 @@
icon_state = "sink_emptied_animation"
desc = "A sink used for washing one's hands and face."
anchored = TRUE
+ unslashable = TRUE
var/busy = FALSE //Something's being washed at the moment
/obj/structure/sink/Initialize()
diff --git a/code/game/objects/structures/windoor_assembly.dm b/code/game/objects/structures/windoor_assembly.dm
index 7957c86e76..64f1c0fdec 100644
--- a/code/game/objects/structures/windoor_assembly.dm
+++ b/code/game/objects/structures/windoor_assembly.dm
@@ -14,6 +14,7 @@
name = "Windoor Assembly"
icon_state = "l_windoor_assembly01"
+ unslashable = TRUE
anchored = FALSE
density = FALSE
dir = NORTH
diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm
index 53ce9ef177..873d4b8c98 100644
--- a/code/game/supplyshuttle.dm
+++ b/code/game/supplyshuttle.dm
@@ -50,6 +50,7 @@ var/datum/controller/supply/supply_controller = new()
gender = PLURAL
density = FALSE
anchored = TRUE
+ unslashable = TRUE
layer = MOB_LAYER
var/collide_message_busy // Timer to stop collision spam
@@ -1251,7 +1252,7 @@ var/datum/controller/supply/supply_controller = new()
/datum/controller/supply/proc/black_market_investigation()
black_market_heat = -1
- SSticker.mode.get_specific_call("Inspection - Colonial Marshal Ledger Investigation Team", TRUE, TRUE, FALSE)
+ SSticker.mode.get_specific_call("Inspection - Colonial Marshal Ledger Investigation Team", TRUE, TRUE)
log_game("Black Market Inspection auto-triggered.")
/obj/structure/machinery/computer/supplycomp/proc/is_buyable(datum/supply_packs/supply_pack)
diff --git a/code/game/turfs/walls/r_wall.dm b/code/game/turfs/walls/r_wall.dm
index 8933ad31c0..d903324b0f 100644
--- a/code/game/turfs/walls/r_wall.dm
+++ b/code/game/turfs/walls/r_wall.dm
@@ -13,6 +13,11 @@
claws_minimum = CLAW_TYPE_VERY_SHARP
/turf/closed/wall/r_wall/attackby(obj/item/W, mob/user)
+ if(isxeno(user) && istype(W, /obj/item/grab))
+ var/obj/item/grab/attacker_grab = W
+ var/mob/living/carbon/xenomorph/user_as_xenomorph = user
+ user_as_xenomorph.do_nesting_host(attacker_grab.grabbed_thing, src)
+
if(hull)
return
@@ -199,9 +204,6 @@
walltype = WALL_REINFORCED
hull = 1
-/turf/closed/wall/r_wall/unmeltable/attackby() //This should fix everything else. No cables, etc
- return
-
//Chigusa
/turf/closed/wall/r_wall/chigusa
@@ -244,15 +246,6 @@
walltype = WALL_REINFORCED
hull = 1
-/turf/closed/wall/r_wall/prison_unmeltable/ex_act(severity) //Should make it indestructible
- return
-
-/turf/closed/wall/r_wall/prison_unmeltable/fire_act(exposed_temperature, exposed_volume)
- return
-
-/turf/closed/wall/r_wall/prison_unmeltable/attackby() //This should fix everything else. No cables, etc
- return
-
//Biodome
/turf/closed/wall/r_wall/biodome
@@ -267,16 +260,6 @@
icon_state = "h_dome"
hull = TRUE
-/turf/closed/wall/r_wall/biodome/biodome_unmeltable/ex_act(severity) //Should make it indestructible
- return
-
-/turf/closed/wall/r_wall/biodome/biodome_unmeltable/fire_act(exposed_temperature, exposed_volume)
- return
-
-/turf/closed/wall/r_wall/biodome/biodome_unmeltable/attackby() //This should fix everything else. No cables, etc
- return
-
-
/// Destructible elevator walls, for when you want the elevator to act as a prop rather than an actual elevator
/turf/closed/wall/r_wall/elevator
icon = 'icons/turf/elevator.dmi'
diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm
index 22979858ce..009eab0b6f 100644
--- a/code/game/turfs/walls/wall_types.dm
+++ b/code/game/turfs/walls/wall_types.dm
@@ -24,8 +24,8 @@
/obj/structure/girder,
/obj/structure/machinery/door,
/obj/structure/machinery/cm_vending/sorted/attachments/blend,
- /obj/structure/machinery/cm_vending/sorted/cargo_ammo/blend,
- /obj/structure/machinery/cm_vending/sorted/cargo_guns/blend,
+ /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend,
+ /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend,
)
/turf/closed/wall/almayer/update_icon()
@@ -1219,7 +1219,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen)
to_chat(user, SPAN_WARNING("You scrape ineffectively at \the [src]."))
/turf/closed/wall/resin/attackby(obj/item/W, mob/living/user)
- if(SEND_SIGNAL(src, COMSIG_WALL_RESIN_ATTACKBY, W, user) & COMPONENT_CANCEL_ATTACKBY)
+ if(SEND_SIGNAL(src, COMSIG_WALL_RESIN_ATTACKBY, W, user) & COMPONENT_CANCEL_RESIN_ATTACKBY)
return
if(!(W.flags_item & NOBLUDGEON))
diff --git a/code/game/turfs/walls/walls.dm b/code/game/turfs/walls/walls.dm
index 2387a20861..229311325b 100644
--- a/code/game/turfs/walls/walls.dm
+++ b/code/game/turfs/walls/walls.dm
@@ -116,7 +116,10 @@
acided_hole.expand_hole(user) //This proc applies the attack delay itself.
return XENO_NO_DELAY_ACTION
- if(!hull && user.claw_type >= claws_minimum && !acided_hole)
+ if(!hull && user.claw_type >= claws_minimum)
+ if(acided_hole)
+ acided_hole.attack_alien(user)
+ return XENO_NO_DELAY_ACTION
user.animation_attack_on(src)
playsound(src, 'sound/effects/metalhit.ogg', 25, 1)
if(damage >= (damage_cap - (damage_cap / XENO_HITS_TO_DESTROY_WALL)))
diff --git a/code/game/verbs/records.dm b/code/game/verbs/records.dm
index f09de72da2..18ed35ee63 100644
--- a/code/game/verbs/records.dm
+++ b/code/game/verbs/records.dm
@@ -143,7 +143,7 @@
dat += ""
var/color = "#008800"
- var/add_dat = "Add Admin Note
Add Confidential Admin Note
"
+ var/add_dat = "Add Admin Note
Add Confidential Admin Note
"
switch(note_category)
if(NOTE_MERIT)
color = "#9e3dff"
diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm
index 8a249d297c..7c647f5dcf 100644
--- a/code/game/verbs/who.dm
+++ b/code/game/verbs/who.dm
@@ -151,7 +151,7 @@
show_browser(usr, dat, "Who", "who", "size=600x800")
-/client/verb/staffwho()
+/client/proc/staffwho()
set name = "Staffwho"
set category = "Admin"
diff --git a/code/game/world.dm b/code/game/world.dm
index fce40ca468..1307ebccbd 100644
--- a/code/game/world.dm
+++ b/code/game/world.dm
@@ -306,14 +306,11 @@ var/world_topic_spam_protect_time = world.timeofday
var/s = ""
if(CONFIG_GET(string/servername))
- s += "[CONFIG_GET(string/servername)]"
-
- if(SSmapping?.configs)
- var/datum/map_config/MG = SSmapping.configs[GROUND_MAP]
- s += "
Map: [MG?.map_name ? "[MG.map_name]" : ""]"
- if(SSticker?.mode)
- s += "
Mode: [SSticker.mode.name]"
+ s += "[CONFIG_GET(string/servername)]"
+ s += "
Hosted by: [CONFIG_GET(string/hostedby)]"
s += "
Round time: [duration2text()]"
+ s += "
An RP server focused on a tight knit platoon fighting xenos!"
+ s += "
Shoot the shit *and* shoot shit."
world.status = s
diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm
index 11d47993a2..06499ba0af 100644
--- a/code/modules/admin/admin_verbs.dm
+++ b/code/modules/admin/admin_verbs.dm
@@ -69,6 +69,7 @@ var/list/admin_verbs_default = list(
/client/proc/toggle_ares_ping,
/client/proc/cmd_admin_say, /*staff-only ooc chat*/
/client/proc/cmd_mod_say, /* alternate way of typing asay, no different than cmd_admin_say */
+ /client/proc/staffwho,
)
var/list/admin_verbs_admin = list(
diff --git a/code/modules/admin/game_master/game_master.dm b/code/modules/admin/game_master/game_master.dm
index 3884e1168a..d3bc3b0fbc 100644
--- a/code/modules/admin/game_master/game_master.dm
+++ b/code/modules/admin/game_master/game_master.dm
@@ -1,7 +1,13 @@
-/// Assoc list that holds our custom game master objectives, formatted as atom = objective_string
+/// Holds our active game_masters
+GLOBAL_LIST_EMPTY(game_masters)
+
+/// List of assoc lists that hold "object_name", "objective_info", and "object_ref". Name of the objective, any info typed about the objective, and then a reference to be resolved of the object for passing through TGUI
GLOBAL_LIST_EMPTY(game_master_objectives)
+/// Percentage of characters end up clear when sent via radio message
+GLOBAL_VAR_INIT(radio_communication_clarity, 100)
+
/proc/open_game_master_panel(client/using_client)
set name = "Game Master Panel"
set category = "Game Master"
@@ -21,26 +27,17 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
if(src)
open_game_master_panel(src)
-/client/proc/toggle_join_xeno()
- set name = "Toggle Player Xeno Joins"
- set category = "Game Master"
-
- if(!admin_holder || !check_rights(R_MOD, FALSE))
- return
-
- if(!SSticker.mode)
- to_chat(usr, SPAN_WARNING("A mode hasn't been selected yet!"))
- return
-
- SSticker.mode.toggleable_flags ^= MODE_NO_JOIN_AS_XENO
- message_admins("[src] has [MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_JOIN_AS_XENO) ? "disallowed players from joining" : "allowed players to join"] as xenos.")
-
// Spawn stuff
#define DEFAULT_SPAWN_XENO_STRING XENO_CASTE_DRONE
-#define GAME_MASTER_AI_XENOS list(XENO_CASTE_DRONE, XENO_CASTE_RUNNER, XENO_CASTE_FACEHUGGER, XENO_CASTE_CRUSHER)
+#define GAME_MASTER_AI_XENOS list(XENO_CASTE_DRONE, XENO_CASTE_RUNNER, XENO_CASTE_LURKER, XENO_CASTE_FACEHUGGER, XENO_CASTE_CRUSHER)
#define DEFAULT_XENO_AMOUNT_TO_SPAWN 1
+// Behavior stuff
+#define DEFAULT_BEHAVIOR_STRING "Attack"
+#define SELECTABLE_XENO_BEHAVIORS list("Attack", "Capture", "Hive")
+#define SELECTABLE_XENO_BEHAVIORS_ASSOC list("Attack" = /datum/component/ai_behavior_override/attack, "Capture" = /datum/component/ai_behavior_override/capture, "Hive" = /datum/component/ai_behavior_override/hive)
+
// Objective stuff
#define OBJECTIVE_NUMBER_OPTIONS list("zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine")
#define OBJECTIVE_COLOR_OPTIONS list("red", "purple", "blue")
@@ -48,11 +45,14 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
/// Types of click intercepts used by /datum/game_master variable current_click_intercept_action
#define SPAWN_CLICK_INTERCEPT_ACTION "spawn_click_intercept_action"
+#define BEHAVIOR_CLICK_INTERCEPT_ACTION "behavior_click_intercept_action"
#define OBJECTIVE_CLICK_INTERCEPT_ACTION "objective_click_intercept_action"
/datum/game_master
+ var/client/game_master_client
+
/// Associated list of game master submenus organized by object_type = game_master_submenu
var/list/submenu_types = list(
/obj/structure/pipes/vents/scrubber = /datum/game_master_submenu/vents,
@@ -62,8 +62,10 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
/// List of current submenus
var/list/current_submenus
+ /// Holds what type of click intercept we are using
+ var/current_click_intercept_action
- /// Spawn stuff
+ // Spawn stuff
/// The xeno selected to be spawned in the spawn section
var/selected_xeno = DEFAULT_SPAWN_XENO_STRING
@@ -77,33 +79,57 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
/// If we are currently using the click intercept for the spawn section
var/spawn_click_intercept = FALSE
- /// End Spawn Stuff
- /// Objective stuff
+ // Behavior stuff
+
+ /// The current behavior to add when clicking with behavior_click_intercept on
+ var/selected_behavior = DEFAULT_BEHAVIOR_STRING
+
+ /// If we are currently using click intercept for the behavior section
+ var/behavior_click_intercept = FALSE
+
+
+ // Objective stuff
/// If we are currently using the click intercept for the objective section
var/objective_click_intercept = FALSE
- /// End Objective Stuff
+ // Communication stuff
+
+ /// The holder for the game master's virtual phone
+ var/atom/movable/game_master_phone
- /// Holds what type of click intercept we are using
- var/current_click_intercept_action
/datum/game_master/New(client/using_client)
. = ..()
- if(using_client.mob)
- tgui_interact(using_client.mob)
+ game_master_client = using_client
+
+ tgui_interact(game_master_client.mob)
current_submenus = list()
- using_client.click_intercept = src
+ game_master_phone = new(null)
+ game_master_phone.AddComponent(/datum/component/phone/virtual, "Game Master", "white", "Company Command", null, PHONE_DO_NOT_DISTURB_ON, list(FACTION_MARINE, FACTION_COLONIST, FACTION_WY), list(FACTION_MARINE, FACTION_COLONIST, FACTION_WY), null, using_client)
+
+ game_master_client.click_intercept = src
+
+ for(var/datum/component/ai_behavior_override/override in GLOB.all_ai_behavior_overrides)
+ game_master_client.images += override.behavior_image
+
+ GLOB.game_masters |= game_master_client
/datum/game_master/Destroy(force, ...)
. = ..()
submenu_types = null
current_submenus = null
+ QDEL_NULL(game_master_phone)
+
+ for(var/datum/component/ai_behavior_override/override in GLOB.all_ai_behavior_overrides)
+ game_master_client.images -= override.behavior_image
+
+ GLOB.game_masters -= game_master_client
/datum/game_master/ui_data(mob/user)
. = ..()
@@ -116,9 +142,16 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
data["spawn_click_intercept"] = spawn_click_intercept
data["xeno_spawn_count"] = xeno_spawn_count
+ // Behavior stuff
+ data["selected_behavior"] = selected_behavior
+ data["behavior_click_intercept"] = behavior_click_intercept
+
// Objective stuff
data["objective_click_intercept"] = objective_click_intercept
+ data["game_master_objectives"] = length(GLOB.game_master_objectives) ? GLOB.game_master_objectives : ""
+ // Communication stuff
+ data["communication_clarity"] = GLOB.radio_communication_clarity
return data
@@ -129,6 +162,8 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
data["spawnable_xenos"] = GAME_MASTER_AI_XENOS
+ data["selectable_behaviors"] = SELECTABLE_XENO_BEHAVIORS
+
return data
/datum/game_master/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
@@ -137,44 +172,111 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
switch(action)
//Spawn Section
+ if("set_xeno_spawns")
+ var/new_number = text2num(params["value"])
+ if(!new_number)
+ return
+
+ xeno_spawn_count = clamp(new_number, 1, 10)
+ return
+
+ if("set_selected_xeno")
+ selected_xeno = params["new_xeno"]
+ xeno_spawn_count = DEFAULT_XENO_AMOUNT_TO_SPAWN
+ return
+
+ if("xeno_spawn_ai_toggle")
+ spawn_ai = !spawn_ai
+ return
+
if("toggle_click_spawn")
if(spawn_click_intercept)
- spawn_click_intercept = FALSE
- current_click_intercept_action = null
+ reset_click_overrides()
return
+ reset_click_overrides()
spawn_click_intercept = TRUE
current_click_intercept_action = SPAWN_CLICK_INTERCEPT_ACTION
return
- if("xeno_spawn_ai_toggle")
- spawn_ai = !spawn_ai
+ if("delete_all_xenos")
+ if(tgui_alert(ui.user, "Do you want to delete all xenos?", "Confirmation", list("Yes", "No")) != "Yes")
+ return
+
+ for(var/mob/living/carbon/xenomorph/cycled_xeno in GLOB.alive_mob_list)
+ qdel(cycled_xeno)
+
return
- if("set_selected_xeno")
- selected_xeno = params["new_xeno"]
- xeno_spawn_count = DEFAULT_XENO_AMOUNT_TO_SPAWN
+ //Behavior Section
+ if("set_selected_behavior")
+ selected_behavior = params["new_behavior"]
return
- if("set_xeno_spawns")
- var/new_number = text2num(params["value"])
- if(!new_number)
+ if("toggle_click_behavior")
+ if(behavior_click_intercept)
+ reset_click_overrides()
return
- xeno_spawn_count = clamp(new_number, 1, 10)
+ reset_click_overrides()
+ behavior_click_intercept = TRUE
+ current_click_intercept_action = BEHAVIOR_CLICK_INTERCEPT_ACTION
return
//Objective Section
if("toggle_click_objective")
if(objective_click_intercept)
- objective_click_intercept = FALSE
- current_click_intercept_action = null
+ reset_click_overrides()
return
+ reset_click_overrides()
objective_click_intercept = TRUE
current_click_intercept_action = OBJECTIVE_CLICK_INTERCEPT_ACTION
return
+ if("jump_to")
+ if(!params["val"])
+ return
+
+ var/list/objective = params["val"]
+
+ var/atom/objective_atom = locate(objective["object_ref"])
+
+ var/turf/objective_turf = get_turf(objective_atom)
+
+ if(!objective_turf)
+ return TRUE
+
+ var/client/jumping_client = ui.user.client
+ jumping_client.jump_to_turf(objective_turf)
+ return TRUE
+
+ if("remove_objective")
+ if(!params["val"])
+ return
+
+ var/list/objective = params["val"]
+
+ var/atom/objective_atom = locate(objective["object_ref"])
+
+ if(!objective_atom)
+ return TRUE
+
+ if(tgui_alert(ui.user, "Do you want to remove [objective_atom] as an objective?", "Confirmation", list("Yes", "No")) != "Yes")
+ return TRUE
+
+ remove_objective(objective_atom)
+
+ //Communication Section
+ if("use_game_master_phone")
+ game_master_phone.attack_hand(ui.user)
+
+ if("set_communication_clarity")
+ var/new_clarity = text2num(params["clarity"])
+ if(!isnum(new_clarity))
+ return
+
+ GLOB.radio_communication_clarity = clamp(new_clarity, 0, 100)
/datum/game_master/ui_close(mob/user)
. = ..()
@@ -185,8 +287,12 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
spawn_click_intercept = FALSE
objective_click_intercept = FALSE
+ behavior_click_intercept = FALSE
current_click_intercept_action = null
+ for(var/datum/component/ai_behavior_override/override in GLOB.all_ai_behavior_overrides)
+ game_master_client.images -= override.behavior_image
+
/datum/game_master/ui_status(mob/user, datum/ui_state/state)
return UI_INTERACTIVE
@@ -198,12 +304,20 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
user.client?.click_intercept = src
+ for(var/datum/component/ai_behavior_override/override in GLOB.all_ai_behavior_overrides)
+ game_master_client.images |= override.behavior_image
+
/datum/game_master/proc/InterceptClickOn(mob/user, params, atom/object)
var/list/modifiers = params2list(params)
switch(current_click_intercept_action)
if(SPAWN_CLICK_INTERCEPT_ACTION)
+ if(LAZYACCESS(modifiers, MIDDLE_CLICK))
+ if(isxeno(object))
+ qdel(object)
+ return TRUE
+
var/spawning_xeno_type = RoleAuthority.get_caste_by_text(selected_xeno)
if(!spawning_xeno_type)
@@ -217,20 +331,30 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
return TRUE
- if(OBJECTIVE_CLICK_INTERCEPT_ACTION)
- if(object in GLOB.game_master_objectives)
- if(tgui_alert(user, "Do you want to remove [object] as an objective?", "Confirmation", list("Yes", "No")) != "Yes")
- return TRUE
+ if(BEHAVIOR_CLICK_INTERCEPT_ACTION)
+ var/behavior_type = SELECTABLE_XENO_BEHAVIORS_ASSOC[selected_behavior]
- SSminimaps.remove_marker(object)
- GLOB.game_master_objectives -= object
+ if(LAZYACCESS(modifiers, MIDDLE_CLICK))
+ if(object.datum_components?[behavior_type])
+ var/component_to_remove = object.datum_components[behavior_type]
+ qdel(component_to_remove)
return TRUE
+ object.AddComponent(behavior_type)
+ return TRUE
+
+ if(OBJECTIVE_CLICK_INTERCEPT_ACTION)
var/turf/object_turf = get_turf(object)
+
if(!object_turf)
return TRUE
- var/z_level = object_turf.z
+ if(SSminimaps.has_marker(object) || is_objective(object))
+ if(tgui_alert(user, "Do you want to remove [object] as an objective?", "Confirmation", list("Yes", "No")) != "Yes")
+ return TRUE
+
+ remove_objective(object)
+ return TRUE
if(tgui_alert(user, "Do you want to make [object] an objective?", "Confirmation", list("Yes", "No")) != "Yes")
return TRUE
@@ -253,34 +377,77 @@ GLOBAL_LIST_EMPTY(game_master_objectives)
background.overlays += icon
+ var/z_level = object_turf?.z
+
+ if(!object || !z_level)
+ return
+
SSminimaps.add_marker(object, z_level, MINIMAP_FLAG_USCM, given_image = background)
- /// objective_info needs to be implemented both in the game master menu and overwatch TGUI
- /// GLOB.game_master_objectives should also probably hold a datum with more info including the icon here for TGUI usage
- /// - Morrow
var/objective_info = tgui_input_text(user, "Objective info?", "Objective Info")
- GLOB.game_master_objectives[object] = objective_info || ""
+ var/object_ref = REF(object)
+
+ RegisterSignal(object, COMSIG_PARENT_QDELETING, PROC_REF(remove_objective))
+
+ GLOB.game_master_objectives += list(list(
+ "object" = object,
+ "object_name" = object.name,
+ "objective_info" = (objective_info || ""),
+ "object_ref" = object_ref,
+ ))
return TRUE
else
- if(LAZYACCESS(modifiers, MIDDLE_CLICK) && (object.type in submenu_types))
+ if(LAZYACCESS(modifiers, MIDDLE_CLICK))
for(var/datum/game_master_submenu/submenu in current_submenus)
if(submenu.referenced_atom == object)
submenu.tgui_interact(user)
return TRUE
- var/new_menu_type = submenu_types[object.type]
+ for(var/submenu_type in submenu_types)
+ if(istype(object, submenu_type))
+ var/new_submenu_type = submenu_types[submenu_type]
+ current_submenus += new new_submenu_type(user, object)
+ return TRUE
- current_submenus += new new_menu_type(user, object)
return TRUE
+/datum/game_master/proc/reset_click_overrides()
+ spawn_click_intercept = FALSE
+ objective_click_intercept = FALSE
+ behavior_click_intercept = FALSE
+ current_click_intercept_action = null
+
+/datum/game_master/proc/is_objective(atom/checked_object)
+ for(var/list/cycled_objective in GLOB.game_master_objectives)
+ if(cycled_objective["object"] == checked_object)
+ return TRUE
+
+ return FALSE
+
+/datum/game_master/proc/remove_objective(datum/removing_datum)
+ SIGNAL_HANDLER
+
+ for(var/list/cycled_objective in GLOB.game_master_objectives)
+ if(cycled_objective["object"] == removing_datum)
+ GLOB.game_master_objectives.Remove(list(cycled_objective))
+ UnregisterSignal(removing_datum, COMSIG_PARENT_QDELETING)
+
+ SSminimaps.remove_marker(removing_datum)
+
#undef DEFAULT_SPAWN_XENO_STRING
#undef GAME_MASTER_AI_XENOS
#undef DEFAULT_XENO_AMOUNT_TO_SPAWN
+
#undef OBJECTIVE_NUMBER_OPTIONS
#undef OBJECTIVE_COLOR_OPTIONS
#undef OBJECTIVE_COLOR_OPTIONS_ASSOC
+
+#undef DEFAULT_BEHAVIOR_STRING
+#undef SELECTABLE_XENO_BEHAVIORS
+#undef SELECTABLE_XENO_BEHAVIORS_ASSOC
+
#undef SPAWN_CLICK_INTERCEPT_ACTION
#undef OBJECTIVE_CLICK_INTERCEPT_ACTION
diff --git a/code/modules/admin/game_master/game_master_submenu/vents.dm b/code/modules/admin/game_master/game_master_submenu/vents.dm
index 937dc7c5ff..140f1977ca 100644
--- a/code/modules/admin/game_master/game_master_submenu/vents.dm
+++ b/code/modules/admin/game_master/game_master_submenu/vents.dm
@@ -1,6 +1,6 @@
#define DEFAULT_SPAWN_XENO_STRING XENO_CASTE_DRONE
-#define GAME_MASTER_VENT_AI_XENOS list(XENO_CASTE_DRONE, XENO_CASTE_RUNNER, XENO_CASTE_FACEHUGGER)
+#define GAME_MASTER_VENT_AI_XENOS list(XENO_CASTE_DRONE, XENO_CASTE_RUNNER, XENO_CASTE_LURKER, XENO_CASTE_FACEHUGGER)
#define DEFAULT_XENO_AMOUNT_TO_SPAWN 1
diff --git a/code/modules/admin/game_master/toggle_join_xeno.dm b/code/modules/admin/game_master/toggle_join_xeno.dm
new file mode 100644
index 0000000000..6bd29e2f8e
--- /dev/null
+++ b/code/modules/admin/game_master/toggle_join_xeno.dm
@@ -0,0 +1,15 @@
+
+/// For PvE CM we start without the ability for people to join as xenos. This can be toggled by game masters.
+/client/proc/toggle_join_xeno()
+ set name = "Toggle Player Xeno Joins"
+ set category = "Game Master"
+
+ if(!admin_holder || !check_rights(R_MOD, FALSE))
+ return
+
+ if(!SSticker.mode)
+ to_chat(usr, SPAN_WARNING("A mode hasn't been selected yet!"))
+ return
+
+ SSticker.mode.toggleable_flags ^= MODE_NO_JOIN_AS_XENO
+ message_admins("[src] has [MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_JOIN_AS_XENO) ? "disallowed players from joining" : "allowed players to join"] as xenos.")
diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm
index ca1072a95b..f689d11cef 100644
--- a/code/modules/admin/tabs/event_tab.dm
+++ b/code/modules/admin/tabs/event_tab.dm
@@ -218,14 +218,17 @@
if(!istype(chosen_ert))
return
- var/quiet_launch = tgui_alert(usr, "Would you like to announce the distress beacon to the server population? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS)
- if(!quiet_launch)
- qdel(chosen_ert)
- return
- if(quiet_launch == "No")
- quiet_launch = TRUE
- if (quiet_launch == "Yes")
- quiet_launch = FALSE
+ var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS)
+ if(launch_broadcast == "Yes")
+ launch_broadcast = TRUE
+ else
+ launch_broadcast = FALSE
+
+ var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS)
+ if(announce_receipt == "Yes")
+ announce_receipt = TRUE
+ else
+ announce_receipt = FALSE
var/turf/override_spawn_loc
var/prompt = tgui_alert(usr, "Spawn at their assigned spawn, or at your location?", "Spawnpoint Selection", list("Spawn", "Current Location"), 0)
@@ -235,7 +238,7 @@
if(prompt == "Current Location")
override_spawn_loc = get_turf(usr)
- chosen_ert.activate(quiet_launch = quiet_launch, announce = !quiet_launch, override_spawn_loc = override_spawn_loc)
+ chosen_ert.activate(quiet_launch = !launch_broadcast, announce_incoming = announce_receipt, override_spawn_loc = override_spawn_loc)
message_admins("[key_name_admin(usr)] admin-called a [choice == "Randomize" ? "randomized ":""]distress beacon: [chosen_ert.name]")
@@ -931,13 +934,8 @@
message_admins("[key_name(usr)] has fired \an [warhead.name] at ([target.x],[target.y],[target.z]).")
warhead.warhead_impact(target)
- if(istype(warhead, /obj/structure/ob_ammo/warhead/cluster))
- // so the user's screen can shake for the duration of the cluster, otherwise we get a runtime.
- QDEL_IN(warhead, OB_CLUSTER_DURATION)
- else
- QDEL_IN(warhead, OB_CRASHING_DOWN)
else
- warhead.loc = target
+ warhead.forceMove(target)
/client/proc/change_taskbar_icon()
set name = "Set Taskbar Icon"
diff --git a/code/modules/admin/topic/topic.dm b/code/modules/admin/topic/topic.dm
index 8bbc999252..f78b6a844d 100644
--- a/code/modules/admin/topic/topic.dm
+++ b/code/modules/admin/topic/topic.dm
@@ -336,86 +336,6 @@
/////////////////////////////////////new ban stuff
- else if(href_list["jobban2"])
-// if(!check_rights(R_BAN)) return
- /*
- var/mob/M = locate(href_list["jobban2"])
- if(!ismob(M))
- to_chat(usr, "This can only be used on instances of type /mob")
- return
-
- if(!M.ckey) //sanity
- to_chat(usr, "This mob has no ckey")
- return
- if(!RoleAuthority)
- to_chat(usr, "The Role Authority is not set up!")
- return
-
- var/datum/entity/player/P = get_player_from_key(M.ckey)
-
- var/dat = ""
- var/body
- var/jobs = ""
-
- /***********************************WARNING!************************************
- The jobban stuff looks mangled and disgusting
- But it looks beautiful in-game
- -Nodrak
- ************************************WARNING!***********************************/
-//Regular jobs
- //Command (Blue)
- jobs += generate_job_ban_list(M, ROLES_CIC, "CIC", "ddddff")
- jobs += "
"
- // SUPPORT
- jobs += generate_job_ban_list(M, ROLES_AUXIL_SUPPORT, "Support", "ccccff")
- jobs += "
"
- // MPs
- jobs += generate_job_ban_list(M, ROLES_POLICE, "Police", "ffdddd")
- jobs += "
"
- //Engineering (Yellow)
- jobs += generate_job_ban_list(M, ROLES_ENGINEERING, "Engineering", "fff5cc")
- jobs += "
"
- //Cargo (Yellow) //Copy paste, yada, yada. Hopefully Snail can rework this in the future.
- jobs += generate_job_ban_list(M, ROLES_REQUISITION, "Requisition", "fff5cc")
- jobs += "
"
- //Medical (White)
- jobs += generate_job_ban_list(M, ROLES_MEDICAL, "Medical", "ffeef0")
- jobs += "
"
- //Marines
- jobs += generate_job_ban_list(M, ROLES_MARINES, "Marines", "ffeeee")
- jobs += "
"
- // MISC
- jobs += generate_job_ban_list(M, ROLES_MISC, "Misc", "aaee55")
- jobs += "
"
- // Xenos (Orange)
- jobs += generate_job_ban_list(M, ROLES_XENO, "Xenos", "a268b1")
- jobs += "
"
- //Extra (Orange)
- var/isbanned_dept = jobban_isbanned(M, "Syndicate", P)
- jobs += ""
- jobs += "Extras |
---|
"
-
- //ERT
- if(jobban_isbanned(M, "Emergency Response Team", P) || isbanned_dept)
- jobs += "Emergency Response Team | "
- else
- jobs += "Emergency Response Team | "
-
- //Survivor
- if(jobban_isbanned(M, "Survivor", P) || isbanned_dept)
- jobs += "Survivor | "
- else
- jobs += "Survivor | "
-
- if(jobban_isbanned(M, "Agent", P) || isbanned_dept)
- jobs += "Agent | "
- else
- jobs += "Agent | "
-
- body = "[jobs]"
- dat = "[body]"
- show_browser(usr, dat, "Job-Ban Panel: [M.name]", "jobban2", "size=800x490")
- return*/ // DEPRECATED
//JOBBAN'S INNARDS
else if(href_list["jobban3"])
if(!check_rights(R_MOD,0) && !check_rights(R_ADMIN)) return
@@ -697,7 +617,6 @@
to_world(SPAN_NOTICE("The mode is now: [GLOB.master_mode]!"))
Game() // updates the main game menu
SSticker.save_mode(GLOB.master_mode)
- .(href, list("c_mode"=1))
else if(href_list["f_secret2"])
@@ -2098,7 +2017,7 @@
if(distress_cancel)
return
distress_cancel = TRUE
- SSticker.mode.get_specific_call("[ert_called]", TRUE, FALSE, FALSE)
+ SSticker.mode.get_specific_call("[ert_called]", TRUE, FALSE)
log_game("[key_name_admin(approver)] has sent [ert_called], requested by [key_name_admin(ref_person)]")
message_admins("[key_name_admin(approver)] has sent [ert_called], requested by [key_name_admin(ref_person)]")
diff --git a/code/modules/admin/topic/topic_events.dm b/code/modules/admin/topic/topic_events.dm
index 45d826668d..6326a3400d 100644
--- a/code/modules/admin/topic/topic_events.dm
+++ b/code/modules/admin/topic/topic_events.dm
@@ -206,7 +206,19 @@
em_call.players_to_offer = humans
em_call.owner = owner
- em_call.activate(announce = FALSE)
+ var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS)
+ if(launch_broadcast == "Yes")
+ launch_broadcast = TRUE
+ else
+ launch_broadcast = FALSE
+
+ var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS)
+ if(announce_receipt == "Yes")
+ announce_receipt = TRUE
+ else
+ announce_receipt = FALSE
+
+ em_call.activate(!launch_broadcast, announce_receipt)
message_admins("[key_name_admin(usr)] created [humans_to_spawn] humans as [job_name] at [get_area(initial_spot)]")
@@ -284,7 +296,19 @@
em_call.players_to_offer = xenos
em_call.owner = owner
- em_call.activate(announce = FALSE)
+ var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS)
+ if(launch_broadcast == "Yes")
+ launch_broadcast = TRUE
+ else
+ launch_broadcast = FALSE
+
+ var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS)
+ if(announce_receipt == "Yes")
+ announce_receipt = TRUE
+ else
+ announce_receipt = FALSE
+
+ em_call.activate(!launch_broadcast, announce_receipt)
message_admins("[key_name_admin(usr)] created [xenos_to_spawn] xenos as [xeno_caste] at [get_area(initial_spot)]")
diff --git a/code/modules/almayer/machinery.dm b/code/modules/almayer/machinery.dm
index cb90db9e85..90bbd6ef9a 100644
--- a/code/modules/almayer/machinery.dm
+++ b/code/modules/almayer/machinery.dm
@@ -113,6 +113,7 @@
desc = "THIS SHOULDN'T BE VISIBLE, AHELP 'ART-P02' IF SEEN IN ROUND WITH LOCATION"
density = TRUE
anchored = TRUE
+ unslashable = TRUE
/obj/structure/prop/almayer/minigun_crate
name = "30mm ammo crate"
@@ -325,3 +326,18 @@
new /obj/item/clothing/under/shorts/red(src)
new /obj/item/clothing/under/shorts/blue(src)
new /obj/item/clothing/under/shorts/green(src)
+
+/obj/structure/machinery/prop/almayer/overwatch_console
+ name = "Overwatch Console"
+ desc = "State of the art machinery for giving orders to a squad."
+ density = FALSE
+ icon = 'icons/obj/structures/machinery/computer.dmi'
+ icon_state = "overwatch"
+
+/obj/structure/machinery/prop/almayer/orbital_cannon_console
+ name = "\improper Orbital Cannon Console"
+ desc = "The console controlling the orbital cannon loading systems."
+ icon = 'icons/obj/structures/machinery/computer.dmi'
+ icon_state = "ob_console"
+ dir = WEST
+ flags_atom = ON_BORDER|CONDUCT|FPRINT
diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm
index d5d44a0479..d1e7f83dac 100644
--- a/code/modules/asset_cache/asset_list_items.dm
+++ b/code/modules/asset_cache/asset_list_items.dm
@@ -321,7 +321,7 @@
I = icon(icon_file, icon_state, SOUTH)
var/c = initial(item.color)
if (!isnull(c) && c != "#FFFFFF")
- I.Blend(initial(c), ICON_MULTIPLY)
+ I.Blend(c, ICON_MULTIPLY)
else
if (ispath(k, /obj/effect/essentials_set))
var/obj/effect/essentials_set/es_set = new k()
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 1da30d6e47..2e1f8f33f2 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -647,9 +647,9 @@ var/const/MAX_SAVE_SLOTS = 10
//limit - The amount of jobs allowed per column. Defaults to 13 to make it look nice.
//splitJobs - Allows you split the table by job. You can make different tables for each department by including their heads. Defaults to CE to make it look nice.
-//width - Screen' width. Defaults to 550 to make it look nice.
-//height - Screen's height. Defaults to 500 to make it look nice.
-/datum/preferences/proc/SetChoices(mob/user, limit = 19, list/splitJobs = list(JOB_CHIEF_REQUISITION), width = 950, height = 700)
+//width - Screen' width.
+//height - Screen's height.
+/datum/preferences/proc/SetChoices(mob/user, limit = 19, list/splitJobs = list(JOB_CHIEF_REQUISITION), width = 450, height = 450)
if(!RoleAuthority)
return
@@ -1414,11 +1414,8 @@ var/const/MAX_SAVE_SLOTS = 10
var/all_ok = TRUE
for(var/i=1, i<=length(new_xeno_prefix), i++)
var/ascii_char = text2ascii(new_xeno_prefix,i)
- switch(ascii_char)
- // A .. Z
- if(65 to 90) //Uppercase Letters will work
- else
- all_ok = FALSE //everything else - won't
+ if(ascii_char < 65 || ascii_char > 90)
+ all_ok = FALSE //everything else - won't
if(all_ok)
xeno_prefix = new_xeno_prefix
owner.load_xeno_name()
diff --git a/code/modules/clothing/glasses/night.dm b/code/modules/clothing/glasses/night.dm
index afb711c3ca..2a3780832e 100644
--- a/code/modules/clothing/glasses/night.dm
+++ b/code/modules/clothing/glasses/night.dm
@@ -187,7 +187,7 @@
if(target)
var/obj/item/clothing/glasses/night/m56_goggles/G = target
G.set_far_sight(owner, !G.far_sight)
- to_chat(owner, SPAN_NOTICE("You [G.far_sight ? "enable" : "disable"] \the [src]'s far sight system."))
+ to_chat(owner, SPAN_NOTICE("You [G.far_sight ? "enable" : "disable"] \the [G]'s far sight system."))
/datum/action/item_action/m56_goggles/far_sight/update_button_icon()
if(!target)
diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm
index d969587e32..cc7fee7724 100644
--- a/code/modules/clothing/suits/armor.dm
+++ b/code/modules/clothing/suits/armor.dm
@@ -423,7 +423,7 @@
return
var/obj/item/weapon/gun/W = usr.get_active_hand()
if (W.w_class > SIZE_MEDIUM)
- to_chat(usr, SPAN_DANGER("This gun won't fit in \the belt!"))
+ to_chat(usr, SPAN_DANGER("This gun won't fit in the belt!"))
return
holstered = usr.get_active_hand()
usr.drop_held_item()
diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm
index e375502f54..94361c420d 100644
--- a/code/modules/clothing/suits/marine_armor.dm
+++ b/code/modules/clothing/suits/marine_armor.dm
@@ -1635,47 +1635,47 @@
//=======================================================================\\
/obj/item/clothing/suit/storage/marine/MP/provost
- name = "\improper M3 pattern Provost armor"
- desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage."
- icon_state = "pvlight"
- item_state_slots = list(WEAR_JACKET = "pvlight")
- slowdown = SLOWDOWN_ARMOR_VERY_LIGHT
- flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE
- w_class = SIZE_MEDIUM
-
-/obj/item/clothing/suit/storage/marine/MP/provost/enforcer
name = "\improper M3 pattern Provost armor"
desc = "A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage."
icon_state = "pvmedium"
item_state_slots = list(WEAR_JACKET = "pvmedium")
- slowdown = SLOWDOWN_ARMOR_MEDIUM
- armor_melee = CLOTHING_ARMOR_MEDIUM
+ slowdown = SLOWDOWN_ARMOR_LIGHT
armor_bullet = CLOTHING_ARMOR_MEDIUM
armor_laser = CLOTHING_ARMOR_MEDIUMLOW
- armor_bomb = CLOTHING_ARMOR_MEDIUMLOW
- armor_bio = CLOTHING_ARMOR_MEDIUM
+ armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH
+ armor_bio = CLOTHING_ARMOR_MEDIUMHIGH
armor_internaldamage = CLOTHING_ARMOR_MEDIUM
+ flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE
+ storage_slots = 3
/obj/item/clothing/suit/storage/marine/MP/provost/tml
name = "\improper M3 pattern Senior Provost armor"
+ desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage."
icon_state = "pvleader"
item_state_slots = list(WEAR_JACKET = "pvleader")
- desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage."
-
- slowdown = SLOWDOWN_ARMOR_MEDIUM
- armor_bullet = CLOTHING_ARMOR_MEDIUM
- armor_laser = CLOTHING_ARMOR_MEDIUMLOW
- armor_bio = CLOTHING_ARMOR_MEDIUMHIGH
- armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH
/obj/item/clothing/suit/storage/marine/MP/provost/marshal
+ name = "\improper M5 pattern Provost Marshal armor"
+ desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field."
icon_state = "pvmarshal"
item_state_slots = list(WEAR_JACKET = "pvmarshal")
- name = "\improper M3 pattern Provost Marshal armor"
- desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field."
+ w_class = SIZE_MEDIUM
+ storage_slots = 4
+
+/obj/item/clothing/suit/storage/marine/MP/provost/light
+ name = "\improper M3 pattern Provost light armor"
+ desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage."
+ icon_state = "pvlight"
+ item_state_slots = list(WEAR_JACKET = "pvlight")
+ slowdown = SLOWDOWN_ARMOR_VERY_LIGHT
-/obj/item/clothing/suit/storage/marine/MP/provost/marshal/chief
- name = "\improper M3 pattern Provost Chief Marshal armor"
+/obj/item/clothing/suit/storage/marine/MP/provost/light/flexi
+ name = "\improper M3 pattern Provost flexi-armor"
+ desc = "A flexible and easy to store M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage."
+ w_class = SIZE_MEDIUM
+ icon_state = "pvlight_2"
+ item_state_slots = list(WEAR_JACKET = "pvlight_2")
+ storage_slots = 2
//================//UNITED AMERICAS ALLIED COMMAND\\=====================\\
//=======================================================================\\
diff --git a/code/modules/clothing/suits/marine_coat.dm b/code/modules/clothing/suits/marine_coat.dm
index d6781147a0..73d7e09818 100644
--- a/code/modules/clothing/suits/marine_coat.dm
+++ b/code/modules/clothing/suits/marine_coat.dm
@@ -235,31 +235,23 @@
//=========================//PROVOST\\================================\\
//=======================================================================\\
+
/obj/item/clothing/suit/storage/jacket/marine/provost
- name = "\improper Provost Coat"
- desc = "The crisp coat of a Provost Officer."
+ name = "\improper Provost Jacket"
+ desc = "A crisp jacket with the Provost sigil."
+ icon_state = "provost_jacket"
flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE
- icon_state = "provost_coat"
valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR)
-/obj/item/clothing/suit/storage/jacket/marine/provost/advisor
- name = "\improper Provost Advisor Jacket"
- desc = "The crisp jacket of a Provost Advisor."
- icon_state = "provost_jacket"
-
-/obj/item/clothing/suit/storage/jacket/marine/provost/inspector
- name = "\improper Provost Inspector Jacket"
- desc = "The crisp jacket of a Provost Inspector."
- icon_state = "provost_jacket"
+/obj/item/clothing/suit/storage/jacket/marine/provost/coat
+ name = "\improper Provost Coat"
+ desc = "The crisp coat of a Provost Officer."
+ icon_state = "provost_coat"
-/obj/item/clothing/suit/storage/jacket/marine/provost/marshal
- name = "\improper Provost Marshal Jacket"
- desc = "The crisp jacket of a Provost Marshal."
- icon_state = "provost_jacket"
+/obj/item/clothing/suit/storage/jacket/marine/provost/coat/marshal
+ name = "\improper Provost Marshal Coat"
+ icon_state = "provost_coat_marshal"
-/obj/item/clothing/suit/storage/jacket/marine/provost/marshal/chief
- name = "\improper Provost Chief Marshal Jacket"
- desc = "The crisp jacket of the Provost Chief Marshal."
//=========================//DRESS BLUES\\================================\\
//=======================================================================\\
diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm
index d9d8d7da45..59cc02b125 100644
--- a/code/modules/clothing/under/marine_uniform.dm
+++ b/code/modules/clothing/under/marine_uniform.dm
@@ -374,41 +374,17 @@
min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT
-/obj/item/clothing/under/marine/mp/provost/enforcer
- name = "\improper Provost Enforcer Uniform"
- desc = "The crisp uniform of a Provost Enforcer."
-
-/obj/item/clothing/under/marine/mp/provost/tml
- name = "\improper Provost Team Leader Uniform"
- desc = "The crisp uniform of a Provost Team Leader."
- icon_state = "warden_jumpsuit"
- worn_state = "warden_jumpsuit"
-
-/obj/item/clothing/under/marine/mp/provost/advisor
- name = "\improper Provost Advisor Uniform"
- desc = "The crisp uniform of a Provost Advisor."
- icon_state = "warden_jumpsuit"
- worn_state = "warden_jumpsuit"
-
-/obj/item/clothing/under/marine/mp/provost/inspector
- name = "\improper Provost Inspector Uniform"
- desc = "The crisp uniform of a Provost Inspector."
- icon_state = "warden_jumpsuit"
- worn_state = "warden_jumpsuit"
+/obj/item/clothing/under/marine/mp/provost/senior
+ name = "\improper Provost Senior Uniform"
+ desc = "The crisp uniform of a senior member of the Provost Office."
+ icon_state = "provost_tml"
+ worn_state = "provost_tml"
/obj/item/clothing/under/marine/mp/provost/marshal
name = "\improper Provost Marshal Uniform"
desc = "The crisp uniform of a Provost Marshal."
- icon_state = "WO_jumpsuit"
- worn_state = "WO_jumpsuit"
-
-/obj/item/clothing/under/marine/mp/provost/marshal/sector
- name = "\improper Provost Sector Marshal Uniform"
- desc = "The crisp uniform of a Provost Sector Marshal."
-
-/obj/item/clothing/under/marine/mp/provost/marshal/chief
- name = "\improper Provost Chief Marshal Uniform"
- desc = "The crisp uniform of the Provost Chief Marshal."
+ icon_state = "provost_marshal"
+ worn_state = "provost_marshal"
//==================//UNITED AMERICAS ALLIED COMMAND\\===================\\
//=======================================================================\\
diff --git a/code/modules/cm_aliens/XenoStructures.dm b/code/modules/cm_aliens/XenoStructures.dm
index 73ced80994..b1fe57d55d 100644
--- a/code/modules/cm_aliens/XenoStructures.dm
+++ b/code/modules/cm_aliens/XenoStructures.dm
@@ -752,7 +752,7 @@
/obj/effect/alien/resin/resin_pillar/proc/handle_attackby(turf/T, obj/item/I, mob/M)
SIGNAL_HANDLER
attackby(I, M)
- return COMPONENT_CANCEL_ATTACKBY
+ return COMPONENT_CANCEL_RESIN_ATTACKBY
/obj/effect/alien/resin/resin_pillar/proc/handle_hitby(turf/T, atom/movable/AM)
SIGNAL_HANDLER
diff --git a/code/modules/cm_marines/Donator_Items.dm b/code/modules/cm_marines/Donator_Items.dm
index 1c7281114c..e8eb3f75ae 100644
--- a/code/modules/cm_marines/Donator_Items.dm
+++ b/code/modules/cm_marines/Donator_Items.dm
@@ -126,6 +126,9 @@
/obj/item/storage/backpack/marine/fluff
xeno_types = null
+/obj/item/storage/backpack/marine/satchel/fluff
+ xeno_types = null
+
/obj/item/clothing/gloves/marine/fluff //MARINE GLOVES TEMPLATE
name = "ITEM NAME"
desc = "ITEM DESCRIPTION. DONOR ITEM" //Add UNIQUE if Unique
@@ -211,10 +214,10 @@
item_state = "armor_reflec"
/obj/item/clothing/suit/storage/marine/fluff/sas_juggernaut //CKEY=sasoperative (UNIQUE)
- name = "Juggernaut Armor"
+ name = "juggernaut armor"
desc = "Some fancy looking armor. DONOR ITEM"
- icon_state = "rig-syndi"
- item_state = "syndie_hardsuit"
+ icon_state = "skinnerarmor"
+ item_state = "skinnerarmor"
/obj/item/clothing/suit/storage/marine/fluff/penguin //CKEY=tophatpenguin
name = "Trenchcoat"
@@ -589,8 +592,8 @@
flags_inv_hide = HIDEEARS|HIDEALLHAIR
/obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut //CKEY=sasoperative (UNIQUE)
- name = "Juggernaut Helmet"
- icon_state = "rig0-syndi"
+ name = "juggernaut helmet"
+ icon_state = "skinnerhelmet"
desc = "A red helmet, for pairing with JuggerNaut Armor. DONOR ITEM"
/obj/item/clothing/head/helmet/marine/fluff/tristan //CKEY=tristan63
@@ -613,13 +616,6 @@
flags_inventory = BLOCKSHARPOBJ
flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR
-/obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut_alt //CKEY=sasoperative (UNIQUE)
- name = "Juggernaut Helmet"
- icon_state = "ncrhelmet"
- desc = "A red helmet, for pairing with JuggerNaut Armor. DONOR ITEM"
- flags_inventory = BLOCKSHARPOBJ
- flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR
-
/obj/item/clothing/head/helmet/marine/fluff/sadokist //CKEY=sadokist
name = "Tanya's Beret"
desc = "A bright red beret, owned by Tanya Edenia."
@@ -1366,6 +1362,13 @@
icon_state = "securitypack"
item_state = "securitypack"
+/obj/item/storage/backpack/marine/satchel/fluff/sas_juggernaut //CKEY=sasoperative (UNIQUE)
+ name = "tactical radiopack"
+ desc = "A Radio backpack for use with the Juggernaut armor. DONOR ITEM"
+ icon_state = "skinnerpack"
+ item_state = "securitypack"
+ has_gamemode_skin = FALSE //same sprite for all gamemodes.
+
/obj/item/clothing/glasses/fluff/alexwarhammer
name = "Black Jack's Dank Shades"
desc = "+20 Badass points. Donor item"
diff --git a/code/modules/cm_marines/Donator_Kits.dm b/code/modules/cm_marines/Donator_Kits.dm
index 6c8347f328..01acf638c2 100644
--- a/code/modules/cm_marines/Donator_Kits.dm
+++ b/code/modules/cm_marines/Donator_Kits.dm
@@ -427,7 +427,7 @@
donor_key = "sasoperative"
kit_variant = "Juggernaut"
donor_gear = list(
- /obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut_alt,
+ /obj/item/storage/backpack/marine/satchel/fluff/sas_juggernaut,
/obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut,
/obj/item/clothing/suit/storage/marine/fluff/sas_juggernaut,
)
diff --git a/code/modules/cm_marines/equipment/gear.dm b/code/modules/cm_marines/equipment/gear.dm
index b3ec6c800c..41d9482ba8 100644
--- a/code/modules/cm_marines/equipment/gear.dm
+++ b/code/modules/cm_marines/equipment/gear.dm
@@ -164,6 +164,7 @@
anchored = TRUE
opacity = TRUE
density = TRUE
+ unslashable = TRUE
icon = 'icons/obj/apc.dmi'
icon_state = "apc"
diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm
index 507d614066..ddf010547b 100644
--- a/code/modules/cm_marines/equipment/guncases.dm
+++ b/code/modules/cm_marines/equipment/guncases.dm
@@ -9,6 +9,7 @@
can_hold = list()//define on a per case basis for the original firearm.
foldable = TRUE
foldable = /obj/item/stack/sheet/mineral/plastic//it makes sense
+ ground_offset_y = 5
/obj/item/storage/box/guncase/update_icon()
if(LAZYLEN(contents))
diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm
index 53ccb4aa13..6058ae93ec 100644
--- a/code/modules/cm_marines/equipment/kit_boxes.dm
+++ b/code/modules/cm_marines/equipment/kit_boxes.dm
@@ -274,12 +274,12 @@
slowdown = 1
can_hold = list() //Nada. Once you take the stuff out it doesn't fit back in.
foldable = TRUE
+ ground_offset_x = 5
+ ground_offset_y = 5
var/pro_case_overlay
/obj/item/storage/box/kit/Initialize()
. = ..()
- pixel_x = rand(-5, 5)
- pixel_y = rand(-5, 5)
if(pro_case_overlay)
overlays += image('icons/obj/items/storage.dmi', "+[pro_case_overlay]")
diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm
index 9633d18bf3..898ce71b95 100644
--- a/code/modules/cm_marines/equipment/maps.dm
+++ b/code/modules/cm_marines/equipment/maps.dm
@@ -133,6 +133,12 @@
html_link = "images/9/94/New_Varadero.png"
color = "red"
+/obj/item/map/almayer
+ name = "\improper USS Almayer map"
+ desc = "A labeled blueprint of the USS Almayer"
+ html_link = "images/5/54/USS_Almayer.png"
+ color = "cyan"
+
GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps())
/proc/setup_all_maps()
@@ -149,7 +155,8 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps())
MAP_CORSAT = new /obj/item/map/corsat(),
MAP_KUTJEVO = new /obj/item/map/kutjevo_map(),
MAP_LV522_CHANCES_CLAIM = new /obj/item/map/lv522_map(),
- MAP_NEW_VARADERO = new /obj/item/map/new_varadero()
+ MAP_NEW_VARADERO = new /obj/item/map/new_varadero(),
+ MAP_DERELICT_ALMAYER = new /obj/item/map/almayer(),
)
//used by marine equipment machines to spawn the correct map.
diff --git a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm
index 7fd05322f1..45b3a6859d 100644
--- a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm
+++ b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm
@@ -6,11 +6,9 @@
w_class = SIZE_HUGE
flags_atom = FPRINT|CONDUCT
var/datum/cause_data/cause_data
+ ground_offset_x = 7
+ ground_offset_y = 6
-/obj/item/mortar_shell/Initialize(mapload, ...)
- . = ..()
- pixel_y = rand(-6, 6)
- pixel_x = rand(-7, 7)
/obj/item/mortar_shell/Destroy()
. = ..()
diff --git a/code/modules/cm_marines/orbital_cannon.dm b/code/modules/cm_marines/orbital_cannon.dm
index 8d80f80860..05ed5d57c6 100644
--- a/code/modules/cm_marines/orbital_cannon.dm
+++ b/code/modules/cm_marines/orbital_cannon.dm
@@ -16,6 +16,7 @@ var/list/ob_type_fuel_requirements
bound_height = 64
bound_y = 64
unacidable = TRUE
+ unslashable = TRUE
var/obj/structure/orbital_tray/tray
var/chambered_tray = FALSE
var/loaded_tray = FALSE
@@ -217,15 +218,16 @@ var/list/ob_type_fuel_requirements
if(user)
tray.warhead.source_mob = user
- tray.warhead.warhead_impact(target)
+ var/obj/structure/ob_ammo/warhead/warhead = tray.warhead
+ tray.warhead = null
+ warhead.moveToNullspace()
+ warhead.warhead_impact(target)
sleep(OB_CRASHING_DOWN)
ob_cannon_busy = FALSE
-
chambered_tray = FALSE
tray.fuel_amt = 0
- QDEL_NULL(tray.warhead)
tray.update_icon()
update_icon()
@@ -243,6 +245,7 @@ var/list/ob_type_fuel_requirements
bound_width = 64
bound_height = 32
unacidable = TRUE
+ unslashable = TRUE
pixel_y = -9
pixel_x = -6
var/obj/structure/ob_ammo/warhead/warhead
@@ -327,6 +330,7 @@ var/list/ob_type_fuel_requirements
throwpass = TRUE
climbable = TRUE
unacidable = TRUE // issue: being used for defences, solution: abomb
+ unslashable = TRUE
icon = 'icons/obj/structures/props/almayer_props.dmi'
var/is_solid_fuel = 0
var/source_mob
@@ -357,6 +361,9 @@ var/list/ob_type_fuel_requirements
var/max_shake_factor
var/max_knockdown_time
+ // Note that the warhead should be cleared of location by the firing proc,
+ // then auto-delete at the end of the warhead_impact implementation
+
/obj/structure/ob_ammo/warhead/proc/warhead_impact(turf/target)
// make damn sure everyone hears it
playsound(target, 'sound/weapons/gun_orbital_travel.ogg', 100, 1, 75)
@@ -366,7 +373,7 @@ var/list/ob_type_fuel_requirements
message_admins(FONT_SIZE_XL("CLICK TO CANCEL THIS OB"))
var/relative_dir
- for(var/mob/M in range(30, target))
+ for(var/mob/M in urange(30, target))
if(get_turf(M) == target)
relative_dir = 0
else
@@ -377,7 +384,7 @@ var/list/ob_type_fuel_requirements
)
sleep(OB_TRAVEL_TIMING/3)
- for(var/mob/M in range(25, target))
+ for(var/mob/M in urange(25, target))
if(get_turf(M) == target)
relative_dir = 0
else
@@ -388,7 +395,7 @@ var/list/ob_type_fuel_requirements
)
sleep(OB_TRAVEL_TIMING/3)
- for(var/mob/M in range(15, target))
+ for(var/mob/M in urange(15, target))
M.show_message( \
SPAN_HIGHDANGER("OH GOD THE SKY WILL EXPLODE!!!"), SHOW_MESSAGE_VISIBLE, \
SPAN_HIGHDANGER("YOU SHOULDN'T BE HERE!"), SHOW_MESSAGE_AUDIBLE \
@@ -455,6 +462,7 @@ var/list/ob_type_fuel_requirements
handle_ob_shake(target)
sleep(double_explosion_delay)
cell_explosion(target, standard_power, standard_falloff, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
+ qdel(src)
return
// Checks turf around the target
@@ -464,8 +472,11 @@ var/list/ob_type_fuel_requirements
handle_ob_shake(target)
sleep(double_explosion_delay)
cell_explosion(target, standard_power, standard_falloff, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
+ qdel(src)
return
+ qdel(src)
+
/obj/structure/ob_ammo/warhead/incendiary
name = "\improper Incendiary orbital warhead"
warhead_kind = "incendiary"
@@ -497,6 +508,7 @@ var/list/ob_type_fuel_requirements
sleep(clear_delay)
fire_spread(target, cause_data, distance, fire_level, burn_level, fire_color, fire_type, TURF_PROTECTION_OB)
+ qdel(src)
/obj/structure/ob_ammo/warhead/cluster
name = "\improper Cluster orbital warhead"
@@ -529,12 +541,16 @@ var/list/ob_type_fuel_requirements
for(var/i = 1 to total_amount)
for(var/k = 1 to instant_amount)
- var/turf/U = pick(turf_list)
- if(protected_by_pylon(TURF_PROTECTION_OB, U)) //If the turf somehow gained OB protection while the cluster was firing
+ var/turf/selected_turf = pick(turf_list)
+ if(protected_by_pylon(TURF_PROTECTION_OB, selected_turf))
+ continue
+ var/area/selected_area = get_area(selected_turf)
+ if(CEILING_IS_PROTECTED(selected_area?.ceiling, CEILING_PROTECTION_TIER_4))
continue
- fire_in_a_hole(U)
+ fire_in_a_hole(selected_turf)
sleep(delay_between_clusters)
+ QDEL_IN(src, 5 SECONDS) // Leave time for last handle_ob_shake below
/obj/structure/ob_ammo/warhead/cluster/proc/fire_in_a_hole(turf/loc)
new /obj/effect/overlay/temp/blinking_laser (loc)
@@ -546,8 +562,8 @@ var/list/ob_type_fuel_requirements
icon_state = "ob_fuel"
is_solid_fuel = 1
-/obj/structure/ob_ammo/ob_fuel/New()
- ..()
+/obj/structure/ob_ammo/ob_fuel/Initialize()
+ . = ..()
pixel_x = rand(-5,5)
pixel_y = rand(-5,5)
diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm
index fc7f9f4116..eda8bb1737 100644
--- a/code/modules/cm_marines/overwatch.dm
+++ b/code/modules/cm_marines/overwatch.dm
@@ -335,7 +335,7 @@
if(.)
return
- var/mob/user = usr
+ var/mob/user = ui.user
if((user.contents.Find(src) || (in_range(src, user) && istype(loc, /turf))) || (ishighersilicon(user)))
user.set_interaction(src)
@@ -380,22 +380,48 @@
return TRUE
if("message")
- if(current_squad)
- var/input = sanitize_control_chars(stripped_input(user, "Please write a message to announce to the squad:", "Squad Message"))
- if(input)
- current_squad.send_message(input, 1) //message, adds username
- current_squad.send_maptext(input, "Squad Message:")
- visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to all Marines of squad '[current_squad]'.")]")
- log_overwatch("[key_name(user)] sent '[input]' to squad [current_squad].")
+ if(!current_squad)
+ return TRUE
+
+ var/input = tgui_input_text(user, "Please write a message to announce to the squad:", "Squad Message")
+ if(!input)
+ return TRUE
+
+ current_squad.send_message(input, 1) //message, adds username
+ current_squad.send_maptext(input, "Platoon Message:")
+ visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to all Marines of platoon '[current_squad]'.")]")
+ log_overwatch("[key_name(user)] sent '[input]' to platoon [current_squad].")
+
+ var/comm_paygrade = user.get_paygrade()
+
+ for(var/mob/dead/observer/cycled_observer in GLOB.player_list)
+ if(cycled_observer.client && cycled_observer.client.prefs && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO))
+ var/ghost_message = "[comm_paygrade][user] (F) messaged squad '[current_squad]': \"[input]\""
+ cycled_observer.show_message(ghost_message)
+
+ return TRUE
if("sl_message")
- if(current_squad)
- var/input = sanitize_control_chars(stripped_input(user, "Please write a message to announce to the squad leader:", "SL Message"))
- if(input)
- current_squad.send_message(input, 1, 1) //message, adds username, only to leader
- current_squad.send_maptext(input, "Squad Leader Message:", 1)
- visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to Squad Leader [current_squad.squad_leader] of squad '[current_squad]'.")]")
- log_overwatch("[key_name(user)] sent '[input]' to Squad Leader [current_squad.squad_leader] of squad [current_squad].")
+ if(!current_squad)
+ return TRUE
+
+ var/input = tgui_input_text(user, "Please write a message to announce to the Platoon leader:", "SL Message")
+ if(!input)
+ return TRUE
+
+ current_squad.send_message(input, 1, 1) //message, adds username, only to leader
+ current_squad.send_maptext(input, "Platoon Sergeant Message:", 1)
+ visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to Platoon Sergeant [current_squad.squad_leader] of platoon '[current_squad]'.")]")
+ log_overwatch("[key_name(user)] sent '[input]' to Platoon Sergeant [current_squad.squad_leader] of squad [current_squad].")
+
+ var/comm_paygrade = user.get_paygrade()
+
+ for(var/mob/dead/observer/cycled_observer in GLOB.player_list)
+ if(cycled_observer.client && cycled_observer.client.prefs && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO))
+ var/ghost_message = "[comm_paygrade][user] (F) messaged platoon leader of '[current_squad]': \"[input]\""
+ cycled_observer.show_message(ghost_message)
+
+ return TRUE
if("check_primary")
if(current_squad) //This is already checked, but ehh.
diff --git a/code/modules/cm_phone/handset.dm b/code/modules/cm_phone/handset.dm
new file mode 100644
index 0000000000..66ecdeb0d0
--- /dev/null
+++ b/code/modules/cm_phone/handset.dm
@@ -0,0 +1,179 @@
+
+#define HANDSET_RANGE 7
+
+/obj/item/handset
+ name = "telephone"
+ icon = 'icons/obj/items/misc.dmi'
+ icon_state = "rpb_phone"
+
+ w_class = SIZE_LARGE
+
+ flags_atom = FPRINT|USES_HEARING
+
+ var/datum/component/phone/phone_component
+
+ var/atom/holder
+
+ var/datum/effects/tethering/tether_effect
+
+ var/raised = FALSE
+ var/zlevel_transfer = FALSE
+ var/zlevel_transfer_timer = TIMER_ID_NULL
+ var/zlevel_transfer_timeout = 5 SECONDS
+
+/obj/item/handset/Initialize(mapload, phone_component, holder)
+ . = ..()
+
+ src.phone_component = phone_component
+ src.holder = holder
+ attach_to(src.holder)
+
+/obj/item/handset/Destroy()
+ phone_component = null
+ holder = null
+ remove_attached()
+ return ..()
+
+/obj/item/handset/hear_talk(mob/living/talker, message, verb="says", datum/language/message_language, italics = 0)
+ . = ..()
+
+ if(talker == loc)
+ phone_component.handle_speak(message, message_language, talker, direct_talking = TRUE)
+ return
+
+ var/distance = get_dist(src, talker)
+
+ if(distance > 1)
+ return
+
+ message = stars(message, (100 - (distance * 40 + rand(-15, 15))))
+
+ phone_component.handle_speak(message, message_language, talker, direct_talking = FALSE)
+
+/obj/item/handset/proc/attach_to(atom/to_attach)
+ if(!istype(to_attach))
+ return
+
+ remove_attached()
+
+ holder = to_attach
+
+/obj/item/handset/proc/remove_attached()
+ holder = null
+ reset_tether()
+
+/obj/item/handset/proc/reset_tether()
+ SIGNAL_HANDLER
+ if (tether_effect)
+ UnregisterSignal(tether_effect, COMSIG_PARENT_QDELETING)
+ if(!QDESTROYING(tether_effect))
+ qdel(tether_effect)
+ tether_effect = null
+ if(!do_zlevel_check())
+ on_beam_removed()
+
+/obj/item/handset/attack_hand(mob/user)
+ if(holder && get_dist(user, holder) > HANDSET_RANGE)
+ return FALSE
+ return ..()
+
+/obj/item/handset/proc/on_beam_removed()
+ if(!holder)
+ return
+
+ if(!loc)
+ return
+
+ if(get_dist(holder, src) > HANDSET_RANGE)
+ phone_component.recall_handset()
+
+ var/atom/tether_to = get_atom_on_turf(src)
+
+ var/atom/tether_from = get_atom_on_turf(holder)
+
+ if(tether_from == tether_to)
+ return
+
+ var/list/tether_effects = apply_tether(tether_from, tether_to, range = HANDSET_RANGE, icon = "wire", always_face = FALSE)
+ tether_effect = tether_effects["tetherer_tether"]
+ RegisterSignal(tether_effect, COMSIG_PARENT_QDELETING, PROC_REF(reset_tether))
+
+/obj/item/handset/attack_self(mob/user)
+ ..()
+
+ if(raised)
+ set_raised(FALSE, user)
+ to_chat(user, SPAN_NOTICE("You lower [src]."))
+ else
+ set_raised(TRUE, user)
+ to_chat(user, SPAN_NOTICE("You raise [src] to your ear."))
+
+/obj/item/handset/proc/set_raised(to_raise, mob/living/carbon/human/user)
+ if(!istype(user))
+ return
+
+ if(!to_raise)
+ raised = FALSE
+ item_state = "rpb_phone"
+ else
+ raised = TRUE
+ item_state = "rpb_phone_ear"
+
+ user.update_inv_r_hand()
+ user.update_inv_l_hand()
+
+/obj/item/handset/dropped(mob/user)
+ . = ..()
+ set_raised(FALSE, user)
+ reset_tether()
+
+/obj/item/handset/on_enter_storage(obj/item/storage/S)
+ . = ..()
+ if(phone_component)
+ phone_component.recall_handset()
+
+/obj/item/handset/forceMove(atom/dest)
+ . = ..()
+ if(.)
+ reset_tether()
+
+/obj/item/handset/moveToNullspace()
+ . = ..()
+ if(.)
+ reset_tether()
+
+/obj/item/handset/proc/do_zlevel_check()
+ if(!holder || !loc?.z || !holder.z)
+ return FALSE
+
+ if(zlevel_transfer)
+ if(loc.z == holder.z)
+ zlevel_transfer = FALSE
+ if(zlevel_transfer_timer)
+ deltimer(zlevel_transfer_timer)
+ UnregisterSignal(holder, COMSIG_MOVABLE_MOVED)
+ return FALSE
+ return TRUE
+
+ if(holder && loc.z != holder.z)
+ zlevel_transfer = TRUE
+ zlevel_transfer_timer = addtimer(CALLBACK(src, PROC_REF(try_doing_tether)), zlevel_transfer_timeout, TIMER_UNIQUE|TIMER_STOPPABLE)
+ RegisterSignal(holder, COMSIG_MOVABLE_MOVED, PROC_REF(transmitter_move_handler))
+ return TRUE
+ return FALSE
+
+/obj/item/handset/proc/transmitter_move_handler(datum/source)
+ SIGNAL_HANDLER
+ zlevel_transfer = FALSE
+ if(zlevel_transfer_timer)
+ deltimer(zlevel_transfer_timer)
+ UnregisterSignal(holder, COMSIG_MOVABLE_MOVED)
+ reset_tether()
+
+/obj/item/handset/proc/try_doing_tether()
+ zlevel_transfer_timer = TIMER_ID_NULL
+ zlevel_transfer = FALSE
+ UnregisterSignal(holder, COMSIG_MOVABLE_MOVED)
+ reset_tether()
+
+#undef HANDSET_RANGE
diff --git a/code/modules/cm_phone/internal_phone.dm b/code/modules/cm_phone/internal_phone.dm
deleted file mode 100644
index 96530503aa..0000000000
--- a/code/modules/cm_phone/internal_phone.dm
+++ /dev/null
@@ -1,15 +0,0 @@
-/obj/structure/transmitter/internal
- name = "\improper internal telephone receiver"
-
- phone_type = /obj/item/phone
-
- var/atom/relay_obj
-
-/obj/structure/transmitter/internal/ui_host(mob/user, datum/tgui/ui)
- if(!relay_obj)
- return ..()
- return relay_obj
-
-/obj/structure/transmitter/internal/Destroy()
- relay_obj = null
- return ..()
diff --git a/code/modules/cm_phone/phone.dm b/code/modules/cm_phone/phone.dm
deleted file mode 100644
index fd9c8aa02d..0000000000
--- a/code/modules/cm_phone/phone.dm
+++ /dev/null
@@ -1,623 +0,0 @@
-GLOBAL_LIST_EMPTY_TYPED(transmitters, /obj/structure/transmitter)
-
-/obj/structure/transmitter
- name = "telephone receiver"
- icon = 'icons/obj/structures/structures.dmi'
- icon_state = "wall_phone"
- desc = "It is a wall mounted telephone. The fine text reads: To log your details with the mainframe please insert your keycard into the slot below. Unfortunately the slot is jammed. You can still use the phone, however."
-
- var/phone_category = "Uncategorised"
- var/phone_color = "white"
- var/phone_id = "Telephone"
- var/phone_icon
-
- var/obj/item/phone/attached_to
- var/atom/tether_holder
-
- var/obj/structure/transmitter/calling
- var/obj/structure/transmitter/caller
-
- var/next_ring = 0
-
- var/phone_type = /obj/item/phone
-
- var/range = 7
-
- var/enabled = TRUE
- /// Whether or not the phone is receiving calls or not. Varies between on/off or forcibly on/off.
- var/do_not_disturb = PHONE_DND_OFF
-
- var/base_icon_state
-
- var/timeout_timer_id
- var/timeout_duration = 30 SECONDS
-
- var/list/networks_receive = list(FACTION_MARINE)
- var/list/networks_transmit = list(FACTION_MARINE)
-
-/obj/structure/transmitter/hidden
- do_not_disturb = PHONE_DND_FORCED
-
-/obj/structure/transmitter/Initialize(mapload, ...)
- . = ..()
- base_icon_state = icon_state
-
- attached_to = new phone_type(src)
- RegisterSignal(attached_to, COMSIG_PARENT_PREQDELETED, PROC_REF(override_delete))
- update_icon()
-
- if(!get_turf(src))
- return
-
- GLOB.transmitters += src
-
-/obj/structure/transmitter/update_icon()
- . = ..()
- SEND_SIGNAL(src, COMSIG_TRANSMITTER_UPDATE_ICON)
- if(attached_to.loc != src)
- icon_state = "[base_icon_state]_ear"
- return
-
- if(caller)
- icon_state = "[base_icon_state]_ring"
- else
- icon_state = base_icon_state
-
-/obj/structure/transmitter/proc/override_delete()
- SIGNAL_HANDLER
- recall_phone()
- return COMPONENT_ABORT_QDEL
-
-
-#define TRANSMITTER_UNAVAILABLE(T) (\
- T.get_calling_phone() \
- || !T.attached_to \
- || T.attached_to.loc != T \
- || !T.enabled\
-)
-
-/obj/structure/transmitter/proc/get_transmitters()
- var/list/phone_list = list()
-
- for(var/possible_phone in GLOB.transmitters)
- var/obj/structure/transmitter/target_phone = possible_phone
- var/current_dnd = FALSE
- switch(target_phone.do_not_disturb)
- if(PHONE_DND_ON, PHONE_DND_FORCED)
- current_dnd = TRUE
- if(TRANSMITTER_UNAVAILABLE(target_phone) || current_dnd) // Phone not available
- continue
- var/net_link = FALSE
- for(var/network in networks_transmit)
- if(network in target_phone.networks_receive)
- net_link = TRUE
- continue
- if(!net_link)
- continue
-
- var/id = target_phone.phone_id
- var/num_id = 1
- while(id in phone_list)
- id = "[target_phone.phone_id] [num_id]"
- num_id++
-
- target_phone.phone_id = id
- phone_list[id] = target_phone
-
- return phone_list
-
-/obj/structure/transmitter/ui_status(mob/user, datum/ui_state/state)
- . = ..()
- if(TRANSMITTER_UNAVAILABLE(src))
- return UI_CLOSE
-
-/obj/structure/transmitter/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
- . = ..()
- if(.)
- return
-
- if(TRANSMITTER_UNAVAILABLE(src))
- return
-
- if(!ishuman(usr))
- return
-
- var/mob/living/carbon/human/user = usr
-
- switch(action)
- if("call_phone")
- call_phone(user, params["phone_id"])
- . = TRUE
- SStgui.close_uis(src)
- if("toggle_dnd")
- toggle_dnd(user)
-
- update_icon()
-
-/obj/structure/transmitter/ui_data(mob/user)
- var/list/data = list()
-
- data["availability"] = do_not_disturb
-
- return data
-
-/obj/structure/transmitter/ui_static_data(mob/user)
- . = list()
-
- .["available_transmitters"] = get_transmitters() - list(phone_id)
- var/list/transmitters = list()
- for(var/i in GLOB.transmitters)
- var/obj/structure/transmitter/T = i
- transmitters += list(list(
- "phone_category" = T.phone_category,
- "phone_color" = T.phone_color,
- "phone_id" = T.phone_id,
- "phone_icon" = T.phone_icon
- ))
-
- .["transmitters"] = transmitters
-
-/obj/structure/transmitter/proc/call_phone(mob/living/carbon/human/user, calling_phone_id)
- var/list/transmitters = get_transmitters()
- transmitters -= phone_id
-
- if(!length(transmitters) || !(calling_phone_id in transmitters))
- to_chat(user, SPAN_PURPLE("[icon2html(src, user)] No transmitters could be located to call!"))
- return
-
- var/obj/structure/transmitter/T = transmitters[calling_phone_id]
- if(!istype(T) || QDELETED(T))
- transmitters -= T
- CRASH("Qdelled/improper atom inside transmitters list! (istype returned: [istype(T)], QDELETED returned: [QDELETED(T)])")
-
- if(TRANSMITTER_UNAVAILABLE(T))
- return
-
- calling = T
- T.caller = src
- T.update_icon()
-
- to_chat(user, SPAN_PURPLE("[icon2html(src, user)] Dialing [calling_phone_id].."))
- playsound(get_turf(user), "rtb_handset")
- timeout_timer_id = addtimer(CALLBACK(src, PROC_REF(reset_call), TRUE), timeout_duration, TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_STOPPABLE)
-
- START_PROCESSING(SSobj, src)
- START_PROCESSING(SSobj, T)
-
- user.put_in_hands(attached_to)
-
-/obj/structure/transmitter/proc/toggle_dnd(mob/living/carbon/human/user)
- switch(do_not_disturb)
- if(PHONE_DND_ON)
- do_not_disturb = PHONE_DND_OFF
- to_chat(user, SPAN_NOTICE("Do Not Disturb has been disabled. You can now receive calls."))
- if(PHONE_DND_OFF)
- do_not_disturb = PHONE_DND_ON
- to_chat(user, SPAN_WARNING("Do Not Disturb has been enabled. No calls will be received."))
- else
- return FALSE
- return TRUE
-
-/obj/structure/transmitter/attack_hand(mob/user)
- . = ..()
-
- if(!attached_to || attached_to.loc != src)
- return
-
- if(!ishuman(user))
- return
-
- if(!enabled)
- return
-
- if(!get_calling_phone())
- tgui_interact(user)
- return
-
- var/obj/structure/transmitter/T = get_calling_phone()
-
- if(T.attached_to && ismob(T.attached_to.loc))
- var/mob/M = T.attached_to.loc
- to_chat(M, SPAN_PURPLE("[icon2html(src, M)] [phone_id] has picked up."))
- if(T.timeout_timer_id)
- deltimer(T.timeout_timer_id)
- T.timeout_timer_id = null
-
- to_chat(user, SPAN_PURPLE("[icon2html(src, user)] Picked up a call from [T.phone_id]."))
- playsound(get_turf(user), "rtb_handset")
-
- user.put_in_active_hand(attached_to)
- update_icon()
-
-
-#undef TRANSMITTER_UNAVAILABLE
-
-/obj/structure/transmitter/tgui_interact(mob/user, datum/tgui/ui)
- ui = SStgui.try_update_ui(user, src, ui)
- if(!ui)
- ui = new(user, src, "PhoneMenu", phone_id)
- ui.open()
-
-/obj/structure/transmitter/proc/set_tether_holder(atom/A)
- tether_holder = A
-
- if(attached_to)
- attached_to.reset_tether()
-
-/obj/structure/transmitter/proc/reset_call(timeout = FALSE)
- var/obj/structure/transmitter/T = get_calling_phone()
- if(T)
- if(T.attached_to && ismob(T.attached_to.loc))
- var/mob/M = T.attached_to.loc
- to_chat(M, SPAN_PURPLE("[icon2html(src, M)] [phone_id] has hung up on you."))
-
- if(attached_to && ismob(attached_to.loc))
- var/mob/M = attached_to.loc
- if(timeout)
- to_chat(M, SPAN_PURPLE("[icon2html(src, M)] Your call to [T.phone_id] has reached voicemail, you immediately disconnect the line."))
- else
- to_chat(M, SPAN_PURPLE("[icon2html(src, M)] You have hung up on [T.phone_id]."))
-
- if(calling)
- calling.caller = null
- calling = null
-
- if(caller)
- caller.calling = null
- caller = null
-
- if(timeout_timer_id)
- deltimer(timeout_timer_id)
- timeout_timer_id = null
-
- if(T)
- if(T.timeout_timer_id)
- deltimer(T.timeout_timer_id)
- T.timeout_timer_id = null
-
- T.update_icon()
- STOP_PROCESSING(SSobj, T)
-
- STOP_PROCESSING(SSobj, src)
-
-/obj/structure/transmitter/process()
- if(caller)
- if(!attached_to)
- STOP_PROCESSING(SSobj, src)
- return
-
- if(attached_to.loc == src)
- if(next_ring < world.time)
- playsound(loc, 'sound/machines/telephone/telephone_ring.ogg', 75)
- visible_message(SPAN_WARNING("[src] rings vigorously!"))
- next_ring = world.time + 3 SECONDS
-
- else if(calling)
- var/obj/structure/transmitter/T = get_calling_phone()
- if(!T)
- STOP_PROCESSING(SSobj, src)
- return
-
- var/obj/item/phone/P = T.attached_to
-
- if(P && attached_to.loc == src && P.loc == T && next_ring < world.time)
- playsound(get_turf(attached_to), 'sound/machines/telephone/telephone_ring.ogg', 20, FALSE, 14)
- visible_message(SPAN_WARNING("[src] rings vigorously!"))
- next_ring = world.time + 3 SECONDS
-
- else
- STOP_PROCESSING(SSobj, src)
- return
-
-
-/obj/structure/transmitter/proc/recall_phone()
- if(ismob(attached_to.loc))
- var/mob/M = attached_to.loc
- M.drop_held_item(attached_to)
- playsound(get_turf(M), "rtb_handset", 100, FALSE, 7)
-
- attached_to.forceMove(src)
- reset_call()
-
- update_icon()
-
-/obj/structure/transmitter/proc/get_calling_phone()
- if(calling)
- return calling
- else if(caller)
- return caller
-
- return
-
-/obj/structure/transmitter/proc/handle_speak(message, datum/language/L, mob/speaking)
- if(L.flags & SIGNLANG) return
-
- var/obj/structure/transmitter/T = get_calling_phone()
- if(!istype(T))
- return
-
- var/obj/item/phone/P = T.attached_to
-
- if(!P || !attached_to)
- return
-
- P.handle_hear(message, L, speaking)
- attached_to.handle_hear(message, L, speaking)
- log_say("TELEPHONE: [key_name(speaking)] on Phone '[phone_id]' to '[T.phone_id]' said '[message]'")
-
-/obj/structure/transmitter/attackby(obj/item/W, mob/user)
- if(W == attached_to)
- recall_phone()
- else
- . = ..()
-
-/obj/structure/transmitter/Destroy()
- if(attached_to)
- if(attached_to.loc == src)
- UnregisterSignal(attached_to, COMSIG_PARENT_PREQDELETED)
- qdel(attached_to)
- else
- attached_to.attached_to = null
- attached_to = null
-
- GLOB.transmitters -= src
- SStgui.close_uis(src)
-
- reset_call()
- return ..()
-
-/obj/item/phone
- name = "telephone"
- icon = 'icons/obj/items/misc.dmi'
- icon_state = "rpb_phone"
-
- w_class = SIZE_LARGE
-
- var/obj/structure/transmitter/attached_to
- var/datum/effects/tethering/tether_effect
-
- var/raised = FALSE
- var/zlevel_transfer = FALSE
- var/zlevel_transfer_timer = TIMER_ID_NULL
- var/zlevel_transfer_timeout = 5 SECONDS
-
-/obj/item/phone/Initialize(mapload)
- . = ..()
- if(istype(loc, /obj/structure/transmitter))
- attach_to(loc)
-
-/obj/item/phone/Destroy()
- remove_attached()
- return ..()
-
-/obj/item/phone/proc/handle_speak(mob/speaking, message, datum/language/L)
- SIGNAL_HANDLER
-
- if(!attached_to || loc == attached_to)
- UnregisterSignal(speaking, COMSIG_LIVING_SPEAK)
- return
-
- attached_to.handle_speak(message, L, speaking)
-
-/obj/item/phone/proc/handle_hear(message, datum/language/L, mob/speaking)
- if(!attached_to)
- return
-
- var/obj/structure/transmitter/T = attached_to.get_calling_phone()
-
- if(!T)
- return
-
- if(!ismob(loc))
- return
-
- var/loudness = 0
- if(raised)
- loudness = 3
-
- var/mob/M = loc
- var/vname = T.phone_id
-
- if(M == speaking)
- vname = attached_to.phone_id
-
- M.hear_radio(
- message, "says", L, part_a = "",
- part_b = " ", vname = vname,
- speaker = speaking, command = loudness, no_paygrade = TRUE)
-
-/obj/item/phone/proc/attach_to(obj/structure/transmitter/to_attach)
- if(!istype(to_attach))
- return
-
- remove_attached()
-
- attached_to = to_attach
-
-
-/obj/item/phone/proc/remove_attached()
- attached_to = null
- reset_tether()
-
-/obj/item/phone/proc/reset_tether()
- SIGNAL_HANDLER
- if (tether_effect)
- UnregisterSignal(tether_effect, COMSIG_PARENT_QDELETING)
- if(!QDESTROYING(tether_effect))
- qdel(tether_effect)
- tether_effect = null
- if(!do_zlevel_check())
- on_beam_removed()
-
-/obj/item/phone/attack_hand(mob/user)
- if(attached_to && get_dist(user, attached_to) > attached_to.range)
- return FALSE
- return ..()
-
-
-/obj/item/phone/proc/on_beam_removed()
- if(!attached_to)
- return
-
- if(loc == attached_to)
- return
-
- if(get_dist(attached_to, src) > attached_to.range)
- attached_to.recall_phone()
-
- var/atom/tether_to = src
-
- if(loc != get_turf(src))
- tether_to = loc
- if(tether_to.loc != get_turf(tether_to))
- attached_to.recall_phone()
- return
-
- var/atom/tether_from = attached_to
-
- if(attached_to.tether_holder)
- tether_from = attached_to.tether_holder
-
- if(tether_from == tether_to)
- return
-
- var/list/tether_effects = apply_tether(tether_from, tether_to, range = attached_to.range, icon = "wire", always_face = FALSE)
- tether_effect = tether_effects["tetherer_tether"]
- RegisterSignal(tether_effect, COMSIG_PARENT_QDELETING, PROC_REF(reset_tether))
-
-/obj/item/phone/attack_self(mob/user)
- ..()
- if(raised)
- set_raised(FALSE, user)
- to_chat(user, SPAN_NOTICE("You lower [src]."))
- else
- set_raised(TRUE, user)
- to_chat(user, SPAN_NOTICE("You raise [src] to your ear."))
-
-
-/obj/item/phone/proc/set_raised(to_raise, mob/living/carbon/human/H)
- if(!istype(H))
- return
-
- if(!to_raise)
- raised = FALSE
- item_state = "rpb_phone"
-
- var/obj/item/device/radio/R = H.get_type_in_ears(/obj/item/device/radio)
- R?.on = TRUE
- else
- raised = TRUE
- item_state = "rpb_phone_ear"
-
- var/obj/item/device/radio/R = H.get_type_in_ears(/obj/item/device/radio)
- R?.on = FALSE
-
- H.update_inv_r_hand()
- H.update_inv_l_hand()
-
-/obj/item/phone/dropped(mob/user)
- . = ..()
- UnregisterSignal(user, COMSIG_LIVING_SPEAK)
-
- set_raised(FALSE, user)
-
-/obj/item/phone/on_enter_storage(obj/item/storage/S)
- . = ..()
- if(attached_to)
- attached_to.recall_phone()
-
-/obj/item/phone/pickup(mob/user)
- . = ..()
- RegisterSignal(user, COMSIG_LIVING_SPEAK, PROC_REF(handle_speak))
-
-/obj/item/phone/forceMove(atom/dest)
- . = ..()
- if(.)
- reset_tether()
-
-/obj/item/phone/proc/do_zlevel_check()
- if(!attached_to || !loc.z || !attached_to.z)
- return FALSE
-
- if(zlevel_transfer)
- if(loc.z == attached_to.z)
- zlevel_transfer = FALSE
- if(zlevel_transfer_timer)
- deltimer(zlevel_transfer_timer)
- UnregisterSignal(attached_to, COMSIG_MOVABLE_MOVED)
- return FALSE
- return TRUE
-
- if(attached_to && loc.z != attached_to.z)
- zlevel_transfer = TRUE
- zlevel_transfer_timer = addtimer(CALLBACK(src, PROC_REF(try_doing_tether)), zlevel_transfer_timeout, TIMER_UNIQUE|TIMER_STOPPABLE)
- RegisterSignal(attached_to, COMSIG_MOVABLE_MOVED, PROC_REF(transmitter_move_handler))
- return TRUE
- return FALSE
-
-/obj/item/phone/proc/transmitter_move_handler(datum/source)
- SIGNAL_HANDLER
- zlevel_transfer = FALSE
- if(zlevel_transfer_timer)
- deltimer(zlevel_transfer_timer)
- UnregisterSignal(attached_to, COMSIG_MOVABLE_MOVED)
- reset_tether()
-
-/obj/item/phone/proc/try_doing_tether()
- zlevel_transfer_timer = TIMER_ID_NULL
- zlevel_transfer = FALSE
- UnregisterSignal(attached_to, COMSIG_MOVABLE_MOVED)
- reset_tether()
-
-/obj/structure/transmitter/no_dnd
- do_not_disturb = PHONE_DND_FORBIDDEN
-
-//rotary desk phones (need a touch tone handset at some point)
-/obj/structure/transmitter/rotary
- name = "rotary telephone"
- icon_state = "rotary_phone"
- desc = "The finger plate is a little stiff."
-
-/obj/structure/transmitter/rotary/no_dnd
- do_not_disturb = PHONE_DND_FORBIDDEN
-
-/obj/structure/transmitter/touchtone
- name = "touch-tone telephone"
- icon_state = "rotary_phone"//placeholder
- desc = "Ancient aliens, it's all true. I'm an expert just like you!"
-
-/obj/structure/transmitter/colony_net
- networks_receive = list(FACTION_COLONIST)
- networks_transmit = list(FACTION_COLONIST)
-
-/obj/structure/transmitter/colony_net/rotary
- name = "rotary telephone"
- icon_state = "rotary_phone"
- desc = "The finger plate is a little stiff."
-
-/obj/structure/transmitter/upp_net
- networks_receive = list(FACTION_UPP)
- networks_transmit = list(FACTION_UPP)
-
-/obj/structure/transmitter/upp_net/rotary
- name = "rotary telephone"
- icon_state = "rotary_phone"
- desc = "The finger plate is a little stiff."
-
-/obj/structure/transmitter/clf_net
- networks_receive = list(FACTION_CLF)
- networks_transmit = list(FACTION_CLF)
-
-/obj/structure/transmitter/clf_net/rotary
- name = "rotary telephone"
- icon_state = "rotary_phone"
- desc = "The finger plate is a little stiff."
-
-/obj/structure/transmitter/wy_net
- networks_receive = list(FACTION_WY)
- networks_transmit = list(FACTION_WY)
-
-/obj/structure/transmitter/wy_net/rotary
- name = "rotary telephone"
- icon_state = "rotary_phone"
- desc = "The finger plate is a little stiff."
diff --git a/code/modules/cm_phone/phone_base.dm b/code/modules/cm_phone/phone_base.dm
new file mode 100644
index 0000000000..d5f252846b
--- /dev/null
+++ b/code/modules/cm_phone/phone_base.dm
@@ -0,0 +1,101 @@
+/obj/structure/phone_base
+ name = "telephone receiver"
+ icon = 'icons/obj/structures/structures.dmi'
+ icon_state = "wall_phone"
+ desc = "It is a wall mounted telephone. The fine text reads: To log your details with the mainframe please insert your keycard into the slot below. Unfortunately the slot is jammed. You can still use the phone, however."
+ unslashable = TRUE
+
+ var/phone_category = "Uncategorised"
+ var/phone_color = "white"
+ var/phone_id = "Telephone"
+ var/phone_icon
+
+ /// Whether or not the phone is receiving calls or not. Varies between on/off or forcibly on/off.
+ var/do_not_disturb = PHONE_DO_NOT_DISTURB_OFF
+
+ var/list/networks_receive = list(FACTION_MARINE)
+ var/list/networks_transmit = list(FACTION_MARINE)
+
+/obj/structure/phone_base/Initialize(mapload, ...)
+ . = ..()
+
+ AddComponent(/datum/component/phone, phone_category, phone_color, phone_id, phone_icon, do_not_disturb, networks_receive, networks_transmit)
+ RegisterSignal(src, COMSIG_ATOM_PHONE_PICKED_UP, PROC_REF(phone_picked_up))
+ RegisterSignal(src, COMSIG_ATOM_PHONE_HUNG_UP, PROC_REF(phone_hung_up))
+ RegisterSignal(src, COMSIG_ATOM_PHONE_RINGING, PROC_REF(phone_ringing))
+ RegisterSignal(src, COMSIG_ATOM_PHONE_STOPPED_RINGING, PROC_REF(phone_stopped_ringing))
+
+/obj/structure/phone_base/Destroy()
+ networks_receive = null
+ networks_transmit = null
+ return ..()
+
+/obj/structure/phone_base/proc/phone_picked_up()
+ icon_state = PHONE_OFF_BASE_UNIT_ICON_STATE
+
+/obj/structure/phone_base/proc/phone_hung_up()
+ icon_state = PHONE_ON_BASE_UNIT_ICON_STATE
+
+/obj/structure/phone_base/proc/phone_ringing()
+ icon_state = PHONE_RINGING_ICON_STATE
+
+/obj/structure/phone_base/proc/phone_stopped_ringing()
+ if(icon_state == PHONE_OFF_BASE_UNIT_ICON_STATE)
+ return
+ icon_state = PHONE_ON_BASE_UNIT_ICON_STATE
+
+/obj/structure/phone_base/hidden
+ do_not_disturb = PHONE_DO_NOT_DISTURB_FORCED
+
+/obj/structure/phone_base/no_dnd
+ do_not_disturb = PHONE_DO_NOT_DISTURB_FORBIDDEN
+
+//rotary desk phones (need a touch tone handset at some point)
+/obj/structure/phone_base/rotary
+ name = "rotary telephone"
+ icon_state = "rotary_phone"
+ desc = "The finger plate is a little stiff."
+
+/obj/structure/phone_base/rotary/no_dnd
+ do_not_disturb = PHONE_DO_NOT_DISTURB_FORBIDDEN
+
+/obj/structure/phone_base/touchtone
+ name = "touch-tone telephone"
+ icon_state = "rotary_phone"//placeholder
+ desc = "Ancient aliens, it's all true. I'm an expert just like you!"
+
+/obj/structure/phone_base/colony_net
+ networks_receive = list(FACTION_COLONIST)
+ networks_transmit = list(FACTION_COLONIST)
+
+/obj/structure/phone_base/colony_net/rotary
+ name = "rotary telephone"
+ icon_state = "rotary_phone"
+ desc = "The finger plate is a little stiff."
+
+/obj/structure/phone_base/upp_net
+ networks_receive = list(FACTION_UPP)
+ networks_transmit = list(FACTION_UPP)
+
+/obj/structure/phone_base/upp_net/rotary
+ name = "rotary telephone"
+ icon_state = "rotary_phone"
+ desc = "The finger plate is a little stiff."
+
+/obj/structure/phone_base/clf_net
+ networks_receive = list(FACTION_CLF)
+ networks_transmit = list(FACTION_CLF)
+
+/obj/structure/phone_base/clf_net/rotary
+ name = "rotary telephone"
+ icon_state = "rotary_phone"
+ desc = "The finger plate is a little stiff."
+
+/obj/structure/phone_base/wy_net
+ networks_receive = list(FACTION_WY)
+ networks_transmit = list(FACTION_WY)
+
+/obj/structure/phone_base/wy_net/rotary
+ name = "rotary telephone"
+ icon_state = "rotary_phone"
+ desc = "The finger plate is a little stiff."
diff --git a/code/modules/cm_tech/droppod/droppod.dm b/code/modules/cm_tech/droppod/droppod.dm
index 030dd11474..ebaa4f7ae3 100644
--- a/code/modules/cm_tech/droppod/droppod.dm
+++ b/code/modules/cm_tech/droppod/droppod.dm
@@ -10,6 +10,7 @@
density = FALSE
wrenchable = TRUE
+ unslashable = TRUE
var/droppod_flags = NO_FLAGS
diff --git a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm
index d6c849e883..16f0f26576 100644
--- a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm
+++ b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm
@@ -21,4 +21,4 @@
/datum/tech/cryomarine/on_unlock()
. = ..()
- SSticker.mode.get_specific_call("Marine Cryo Reinforcement (Spec)", TRUE, FALSE, FALSE, announce_dispatch_message = FALSE)
+ SSticker.mode.get_specific_call("Marine Cryo Reinforcement (Spec)", TRUE, FALSE)
diff --git a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm
index 575ffe67b8..49b4eea8f5 100644
--- a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm
+++ b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm
@@ -23,4 +23,4 @@
/datum/tech/repeatable/cryomarine/on_unlock()
. = ..()
- SSticker.mode.get_specific_call("Marine Cryo Reinforcements (Tech)", TRUE, FALSE, FALSE, announce_dispatch_message = FALSE)
+ SSticker.mode.get_specific_call("Marine Cryo Reinforcements (Tech)", TRUE, FALSE)
diff --git a/code/modules/defenses/defenses.dm b/code/modules/defenses/defenses.dm
index a43af36097..cf1ff5a278 100644
--- a/code/modules/defenses/defenses.dm
+++ b/code/modules/defenses/defenses.dm
@@ -101,14 +101,14 @@
power_on_action()
update_icon()
- GLOB.all_defenses += src
+ GLOB.all_active_defenses += src
/obj/structure/machinery/defenses/proc/power_off()
turned_on = FALSE
power_off_action()
update_icon()
- GLOB.all_defenses -= src
+ GLOB.all_active_defenses -= src
/**
* Update state category for this structure.
@@ -472,7 +472,7 @@
return
/obj/structure/machinery/defenses/Destroy()
- GLOB.all_defenses -= src
+ GLOB.all_active_defenses -= src
if(owner_mob)
owner_mob = null
diff --git a/code/modules/defenses/handheld.dm b/code/modules/defenses/handheld.dm
index 57355f825a..2cdaf6b2f0 100644
--- a/code/modules/defenses/handheld.dm
+++ b/code/modules/defenses/handheld.dm
@@ -12,7 +12,7 @@
indestructible = TRUE
var/defense_type = /obj/structure/machinery/defenses
- var/deployment_time = 3 SECONDS
+ var/deployment_time = (0.5 SECONDS)
var/dropped = 1
var/obj/structure/machinery/defenses/TR
diff --git a/code/modules/defenses/sentry.dm b/code/modules/defenses/sentry.dm
index 3391b57abb..24bff3d869 100644
--- a/code/modules/defenses/sentry.dm
+++ b/code/modules/defenses/sentry.dm
@@ -530,6 +530,8 @@
icon_state = "premade" //for the map editor only
faction_group = FACTION_LIST_MARINE
static = TRUE
+ fire_delay = 5
+ burst = 1
/obj/structure/machinery/defenses/sentry/premade/Initialize()
. = ..()
diff --git a/code/modules/desert_dam/filtration/consoles.dm b/code/modules/desert_dam/filtration/consoles.dm
index 038b96eb47..8c2814fafd 100644
--- a/code/modules/desert_dam/filtration/consoles.dm
+++ b/code/modules/desert_dam/filtration/consoles.dm
@@ -35,8 +35,6 @@ var/global/river_activated = FALSE
if (prob(10))
get_broken()
return
- else
- return
/obj/structure/machinery/filtration/console/proc/get_broken()
if(damaged)
diff --git a/code/modules/desert_dam/filtration/filtration.dm b/code/modules/desert_dam/filtration/filtration.dm
index d35ee7c3ea..6c079f3dcd 100644
--- a/code/modules/desert_dam/filtration/filtration.dm
+++ b/code/modules/desert_dam/filtration/filtration.dm
@@ -136,7 +136,7 @@ var/global/east_riverstart = 0
else
return
- if(ismob(A))
+ if(isliving(A))
var/mob/living/M = A
// Inside a xeno for example
diff --git a/code/modules/desert_dam/filtration/floodgates.dm b/code/modules/desert_dam/filtration/floodgates.dm
index 1e91a83bc9..9c361f9158 100644
--- a/code/modules/desert_dam/filtration/floodgates.dm
+++ b/code/modules/desert_dam/filtration/floodgates.dm
@@ -9,4 +9,4 @@
icon = 'icons/turf/walls/bunker.dmi'
icon_state = "gate_west"
density = TRUE
-
+ unslashable = TRUE
diff --git a/code/modules/flufftext/Chinese.dm b/code/modules/flufftext/Chinese.dm
index 36da1d307a..6b19dd61fc 100644
--- a/code/modules/flufftext/Chinese.dm
+++ b/code/modules/flufftext/Chinese.dm
@@ -62,12 +62,12 @@
//remove complex/simple -u- glide final_syllables
if(initial.initial_sound_flags & SIMPLE_U_ONLY)
for(var/datum/chinese_sound/final_syllable/final_syllable as anything in possible_final_syllables)
- if(initial(initial(final_syllable.vowel_class)) == VOWEL_CLASS_BACK_CLOSE)
+ if(initial(final_syllable.vowel_class) == VOWEL_CLASS_BACK_CLOSE)
possible_final_syllables -= final_syllable
possible_final_syllables += /datum/chinese_sound/final_syllable/u
else if(initial.initial_sound_flags & HALF_U)
for(var/datum/chinese_sound/final_syllable/final_syllable as anything in possible_final_syllables)
- if(initial(initial(final_syllable.vowel_class)) == VOWEL_CLASS_BACK_CLOSE && initial(final_syllable.final_syllable_sound_flags) & U_GROUP_FULL)
+ if(initial(final_syllable.vowel_class) == VOWEL_CLASS_BACK_CLOSE && initial(final_syllable.final_syllable_sound_flags) & U_GROUP_FULL)
possible_final_syllables -= final_syllable
//check for if the sound is alveolo-palatal or sibilant/retroflex - then remove or keep front close vowels accordingly
diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm
index 5eb79d2934..bd7718f247 100644
--- a/code/modules/gear_presets/uscm.dm
+++ b/code/modules/gear_presets/uscm.dm
@@ -89,6 +89,9 @@
..()
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo(new_human), WEAR_L_EAR)
+/datum/equipment_preset/uscm/pfc/lesser_rank
+ paygrade = "ME1"
+
//*****************************************************************************************************/
/datum/equipment_preset/uscm/sg
@@ -119,6 +122,9 @@
..()
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo(new_human), WEAR_L_EAR)
+/datum/equipment_preset/uscm/sg/lesser_rank
+ paygrade = "ME3"
+
//*****************************************************************************************************/
/datum/equipment_preset/uscm/sg/full
@@ -285,6 +291,9 @@
..()
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/med(new_human), WEAR_L_EAR)
+/datum/equipment_preset/uscm/medic/lesser_rank
+ paygrade = "ME3"
+
//*****************************************************************************************************/
/datum/equipment_preset/uscm/tl
@@ -357,7 +366,7 @@
assignment = JOB_SQUAD_LEADER
rank = JOB_SQUAD_LEADER
paygrade = "ME7"
- role_comm_title = "SL"
+ role_comm_title = "PltSgt"
minimum_age = 27
skills = /datum/skills/SL
@@ -378,6 +387,8 @@
..()
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/lead(new_human), WEAR_L_EAR)
+/datum/equipment_preset/uscm/leader/lesser_rank
+ paygrade = "ME6"
//*****************************************************************************************************/
// ERT members that spawn with full gear from DEFCON
diff --git a/code/modules/gear_presets/uscm_event.dm b/code/modules/gear_presets/uscm_event.dm
index 8bd2468c78..5f7c40c016 100644
--- a/code/modules/gear_presets/uscm_event.dm
+++ b/code/modules/gear_presets/uscm_event.dm
@@ -206,11 +206,11 @@
back_item = /obj/item/storage/backpack/security
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/enforcer(new_human), WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/enforcer(new_human), WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost(new_human), WEAR_JACKET)
if(new_human.disabilities & NEARSIGHTED)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
else
@@ -248,7 +248,7 @@
back_item = /obj/item/storage/backpack/security
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/tml(new_human), WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/senior(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST)
@@ -275,44 +275,8 @@
new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/combat(new_human), WEAR_J_STORE)
-
-/datum/equipment_preset/uscm_event/provost/advisor
- name = "Provost Advisor (ME6)"
- skills = /datum/skills/CMP
-
- assignment = JOB_PROVOST_ADVISOR
- rank = "Provost Advisor"
- paygrade = "ME6"
- role_comm_title = "PvA"
- flags = EQUIPMENT_PRESET_EXTRA
-
-/datum/equipment_preset/uscm_event/provost/advisor/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/satchel/sec
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/security
-
- new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/advisor(new_human), WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/advisor(new_human), WEAR_JACKET)
- if(new_human.disabilities & NEARSIGHTED)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
- else
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/mp/provost/senior(new_human), WEAR_HEAD)
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost(new_human.back), WEAR_IN_BACK)
-
- new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET)
- new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET)
-
/datum/equipment_preset/uscm_event/provost/inspector
name = "Provost Inspector (PvI)"
- skills = /datum/skills/CMP
assignment = JOB_PROVOST_INSPECTOR
rank = "Provost Inspector"
@@ -326,11 +290,11 @@
back_item = /obj/item/storage/backpack/security
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/inspector(new_human), WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/senior(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/inspector(new_human), WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost(new_human), WEAR_JACKET)
if(new_human.disabilities & NEARSIGHTED)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
else
@@ -339,11 +303,19 @@
new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost(new_human.back), WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/light/flexi(new_human.back), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET)
+/datum/equipment_preset/uscm_event/provost/inspector/advisor
+ name = "Provost Advisor (ME6)"
+
+ assignment = JOB_PROVOST_ADVISOR
+ rank = "Provost Advisor"
+ paygrade = "ME6"
+ role_comm_title = "PvA"
+ flags = EQUIPMENT_PRESET_EXTRA
/datum/equipment_preset/uscm_event/provost/marshal
name = "Provost Marshal (MO6)"
@@ -366,7 +338,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/general/impact(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/marshal(new_human), WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/coat/marshal(new_human), WEAR_JACKET)
if(new_human.disabilities & NEARSIGHTED)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
else
@@ -377,70 +349,24 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal(new_human.back), WEAR_IN_BACK)
-
/datum/equipment_preset/uscm_event/provost/marshal/sector
name = "Provost Sector Marshal (MO7)"
minimum_age = 50
- skills = /datum/skills/general
assignment = JOB_PROVOST_SMARSHAL
rank = "Provost Sector Marshal"
paygrade = "MO7"
role_comm_title = "PvSM"
-/datum/equipment_preset/uscm_event/provost/marshal/sector/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/satchel/sec
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/security
-
- new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/highcom(new_human), WEAR_L_EAR)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/marshal(new_human), WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/general/impact(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/marshal(new_human), WEAR_JACKET)
- if(new_human.disabilities & NEARSIGHTED)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
- else
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/mp/provost/marshal(new_human), WEAR_HEAD)
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal(new_human.back), WEAR_IN_BACK)
-
-
/datum/equipment_preset/uscm_event/provost/marshal/chief
name = "Provost Chief Marshal (PvCM)"
minimum_age = 60
- skills = /datum/skills/general
assignment = JOB_PROVOST_CMARSHAL
rank = "Provost Chief Marshal"
paygrade = "PvCM"
role_comm_title = "PvCM"
-/datum/equipment_preset/uscm_event/provost/marshal/chief/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/satchel/sec
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/security
-
- new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/highcom(new_human), WEAR_L_EAR)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/marshal/chief(new_human), WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/general/impact(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/marshal/chief(new_human), WEAR_JACKET)
- if(new_human.disabilities & NEARSIGHTED)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
- else
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/mp/provost/marshal(new_human), WEAR_HEAD)
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal/chief(new_human.back), WEAR_IN_BACK)
-
/*****************************************************************************************************/
/datum/equipment_preset/uscm_event/uaac/tis
diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm
index 89679e11ab..ea5ef95865 100644
--- a/code/modules/gear_presets/uscm_ship.dm
+++ b/code/modules/gear_presets/uscm_ship.dm
@@ -101,7 +101,7 @@
//*****************************************************************************************************/
/datum/equipment_preset/uscm_ship/reporter
- name = "Combat Correspondent"
+ name = "Combat Correspondent (CIV)"
flags = EQUIPMENT_PRESET_START_OF_ROUND
access = list(
@@ -142,7 +142,7 @@
new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_BACK)
/datum/equipment_preset/uscm_ship/reporter_uscm
- name = "Combat Correspondent"
+ name = "Combat Correspondent (USCM)"
flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE
access = list(
ACCESS_MARINE_COMMAND,
@@ -458,7 +458,6 @@
new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/pistol/command(new_human), WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_L_HAND)
if(kit)
new_human.equip_to_slot_or_del(new kit(new_human), WEAR_IN_BACK)
@@ -536,18 +535,18 @@
//*****************************************************************************************************/
/datum/equipment_preset/uscm_ship/so
- name = "USCM Platoon Commander (PltCO)"
+ name = "USCM Platoon Commander (PltCo)"
flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE
idtype = /obj/item/card/id/silver
assignment = JOB_SO
rank = JOB_SO
paygrade = "MO2"
- role_comm_title = "PltCO"
+ role_comm_title = "PltCo"
minimum_age = 25
skills = /datum/skills/SO
- minimap_icon = list("cic" = MINIMAP_ICON_COLOR_BRONZE)
+ minimap_icon = list("cic" = MINIMAP_ICON_COLOR_SILVER)
minimap_background = MINIMAP_ICON_BACKGROUND_CIC
/datum/equipment_preset/uscm_ship/so/New()
@@ -569,6 +568,9 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_L_HAND)
+/datum/equipment_preset/uscm_ship/so/lesser_rank
+ paygrade = "MO1"
+
//*****************************************************************************************************/
/datum/equipment_preset/uscm_ship/sea
diff --git a/code/modules/hydroponics/botany_disks.dm b/code/modules/hydroponics/botany_disks.dm
index fda43b6f16..602003b19c 100644
--- a/code/modules/hydroponics/botany_disks.dm
+++ b/code/modules/hydroponics/botany_disks.dm
@@ -4,14 +4,12 @@
icon = 'icons/obj/items/disk.dmi'
icon_state = "botanydisk"
w_class = SIZE_TINY
+ ground_offset_x = 5
+ ground_offset_y = 5
var/list/genes = list()
var/genesource = "unknown"
-/obj/item/disk/botany/Initialize()
- . = ..()
- pixel_x = rand(-5,5)
- pixel_y = rand(-5,5)
/obj/item/disk/botany/attack_self(mob/user)
..()
diff --git a/code/modules/law/law.dm b/code/modules/law/law.dm
index 7d59060470..20245beda3 100644
--- a/code/modules/law/law.dm
+++ b/code/modules/law/law.dm
@@ -13,13 +13,14 @@
var/special_punishment = "" //This is for special punishments
//These are bitflags to indicate the type of crime it is.
-#define OPTIONAL_CRIME 1
-#define MINOR_CRIME 2
-#define MAJOR_CRIME 4
-#define CAPITAL_CRIME 8
+#define OPTIONAL_CRIME (1<<0)
+#define MINOR_CRIME (1<<1)
+#define MAJOR_CRIME (1<<2)
+#define CAPITAL_CRIME (1<<3)
+#define PRECAUTIONARY_CHARGE (1<<4)
//These are bitflags for special punishments
-#define PERMABRIG 1
-#define DOUBLE_TIME 2
-#define SAME_AS_ACCUSED 4
-#define DEMOTION 8
+#define PERMABRIG (1<<0)
+#define DOUBLE_TIME (1<<1)
+#define SAME_AS_ACCUSED (1<<2)
+#define DEMOTION (1<<3)
diff --git a/code/modules/law/laws/capital_crime.dm b/code/modules/law/laws/capital_crime.dm
index 8329374e91..687c483c65 100644
--- a/code/modules/law/laws/capital_crime.dm
+++ b/code/modules/law/laws/capital_crime.dm
@@ -10,10 +10,6 @@
name = "Desertion"
desc = "Refusing to carry out the duties essential to one’s post or abandoning post unauthorized, without intent to return. (Retreating from the planet when the FOB is breached is not Desertion, refusing to return when ordered is)."
-/datum/law/capital_law/insanity
- name = "Insanity"
- desc = "Acting in such a manner which makes the offender not sound clear of mind. The CMO or Synthetic can declare insanity on a Marine if the Marine is believed to not be of sound mind. The Marine once cleared to be of sound mind may be released from this particular charge."
-
/datum/law/capital_law/jailbreak_escape
name = "Jailbreak/Escape"
desc = "To escape, assist in an escape, attempt escape, or be willfully and knowingly broken out."
@@ -30,7 +26,3 @@
/datum/law/capital_law/crimes_against_humanity
name = "Crimes against Humanity"
desc = "To engage in actions that violate human rights or otherwise are heinous acts against humans. Examples are torture, cannibalism and forced infection with Xenomorph larva."
-
-/datum/law/capital_law/prisoner_of_war
- name = "Prisoner of War"
- desc = "Being a member of a currently hostile faction to the USCM."
diff --git a/code/modules/law/laws/precautionary_charge.dm b/code/modules/law/laws/precautionary_charge.dm
new file mode 100644
index 0000000000..c06cd6ca52
--- /dev/null
+++ b/code/modules/law/laws/precautionary_charge.dm
@@ -0,0 +1,18 @@
+/datum/law/precautionary_charge
+ severity = PRECAUTIONARY_CHARGE
+ brig_time = PERMABRIG_SENTENCE
+ special_punishment = "Not inclusive for execution criteria."
+
+/datum/law/precautionary_charge/discretionary_arrest
+ name = "Discretionary Detainment"
+ desc = "A discretionary charge used by Commanding Officers to detain personnel for any reason, for the safety and benefit of the operation or security. The duration of this charge is variable and may be pardoned/lifted at any time by the Commanding Officer."
+ special_punishment = "Not inclusive for execution criteria. May only be appealed to the Acting Commander or Provost/USCM HC."
+
+/datum/law/precautionary_charge/insanity
+ name = "Insanity"
+ desc = "Acting in such a manner which makes the offender not sound clear of mind. The CMO or Synthetic can declare insanity on a Marine if the Marine is believed to not be of sound mind. The Marine once cleared to be of sound mind may be released from this particular charge."
+
+/datum/law/precautionary_charge/prisoner_of_war
+ name = "Prisoner of War"
+ desc = "Being a member of a legitimate and recognised faction currently hostile to the USCM."
+ special_punishment = "Execution is forbidden barring exceptional circumstances."
diff --git a/code/modules/mentor/mentorhelp.dm b/code/modules/mentor/mentorhelp.dm
index 7746e90d96..695ec60463 100644
--- a/code/modules/mentor/mentorhelp.dm
+++ b/code/modules/mentor/mentorhelp.dm
@@ -169,10 +169,7 @@
if(sender == author)
message_title = "MentorHelp"
// If there's a mentor, let them mark it. If not, let them unmark it
- if(mentor)
- message_sender_options = " (Unmark"
- else
- message_sender_options = " (Mark"
+ message_sender_options = " (Mark/Unmark"
message_sender_options += " | Close | AutoResponse)"
var/message_header = SPAN_MENTORHELP("[message_title] from [message_sender_key]: [message_sender_options]
")
@@ -274,9 +271,10 @@
if("autorespond")
autoresponse(C)
if("mark")
- mark(C)
- if("unmark")
- unmark(C)
+ if(!mentor)
+ mark(C)
+ else
+ unmark(C)
if("close")
if(C == author || C == mentor || CLIENT_IS_STAFF(C))
close(C)
@@ -327,7 +325,7 @@
var/msg = SPAN_MENTORSAY("Autoresponse: [choice]")
switch(choice)
if("L: Discord")
- msg += "You can join our Discord server by using this link!"
+ msg += "You can join our Discord server by using this link!"
if("L: Xeno Quickstart Guide")
msg += "Your answer can be found on the Xeno Quickstart Guide on our wiki. Check it out here."
if("L: Marine Quickstart Guide")
diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm
index 19f461be75..8a13617fa7 100644
--- a/code/modules/mob/hear_say.dm
+++ b/code/modules/mob/hear_say.dm
@@ -90,6 +90,9 @@
else
message = stars(message)
+ if(GLOB.radio_communication_clarity < 100)
+ message = stars(message, GLOB.radio_communication_clarity)
+
if(language)
style = language.color
diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm
index 4b86c827a0..28e45dcb2f 100644
--- a/code/modules/mob/living/carbon/human/say.dm
+++ b/code/modules/mob/living/carbon/human/say.dm
@@ -132,7 +132,6 @@
for(var/message_mode in parsed["modes"])
var/list/obj/item/used_radios = list()
switch(message_mode)
- if(MESSAGE_MODE_LOCAL)
if(RADIO_MODE_WHISPER)
whisper_say(message, speaking, alt_name)
return
@@ -142,9 +141,10 @@
used_radios += I
break // remove this if we EVER have two different intercomms with DIFFERENT frequencies IN ONE ROOM
else
- var/earpiece = get_type_in_ears(/obj/item/device/radio)
- if(earpiece)
- used_radios += earpiece
+ if(message_mode != MESSAGE_MODE_LOCAL)
+ var/earpiece = get_type_in_ears(/obj/item/device/radio)
+ if(earpiece)
+ used_radios += earpiece
var/sound/speech_sound
var/sound_vol
diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm
index f6487d1faf..3f415d8d30 100644
--- a/code/modules/mob/living/carbon/human/species/species.dm
+++ b/code/modules/mob/living/carbon/human/species/species.dm
@@ -133,10 +133,10 @@
return
/datum/species/proc/create_organs(mob/living/carbon/human/H) //Handles creation of mob organs and limbs.
- for(var/L in H.limbs) //In case of pre-existing limbs/organs, we remove the old ones.
- qdel(L)
- H.internal_organs = list()
- H.internal_organs_by_name = list()
+ //In case of pre-existing limbs/organs, we remove the old ones.
+ QDEL_LIST(H.limbs)
+ QDEL_LIST(H.internal_organs)
+ H.internal_organs_by_name.Cut()
//This is a basic humanoid limb setup.
var/obj/limb/chest/C = new(H, null, H)
diff --git a/code/modules/mob/living/carbon/xenomorph/Evolution.dm b/code/modules/mob/living/carbon/xenomorph/Evolution.dm
index bf46934730..467fceb360 100644
--- a/code/modules/mob/living/carbon/xenomorph/Evolution.dm
+++ b/code/modules/mob/living/carbon/xenomorph/Evolution.dm
@@ -202,7 +202,7 @@
to_chat(src, SPAN_WARNING("Nuh-uh."))
return FALSE
- if(SSticker?.mode?.flags_round_type & MODE_NO_XENO_EVOLVE)
+ if(SSticker.mode?.flags_round_type & MODE_NO_XENO_EVOLVE)
to_chat(src, SPAN_WARNING("This mode disallows xeno evolution."))
return FALSE
diff --git a/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm b/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm
index 1af6eebcf9..83c8500a1b 100644
--- a/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm
+++ b/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm
@@ -25,6 +25,10 @@
return FALSE
/datum/mutator_set/proc/list_and_purchase_mutators()
+ if(SSticker.mode?.flags_round_type & MODE_NO_XENO_EVOLVE)
+ to_chat(usr, SPAN_WARNING("This mode disallows xeno mutators."))
+ return FALSE
+
var/list/mutators_for_purchase = available_mutators()
var/mob/living/carbon/xenomorph/Xeno = usr
if(mutators_for_purchase.len == 0)
diff --git a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
index fa9036bd83..f0961f3802 100644
--- a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
@@ -357,8 +357,8 @@
/mob/living/carbon/xenomorph/proc/pounced_turf(turf/T)
if(!T.density)
- for(var/mob/M in T)
- pounced_mob(M)
+ for(var/mob/living/mob in T)
+ pounced_mob(mob)
break
else
turf_launch_collision(T)
@@ -732,11 +732,7 @@
var/turf/supplier_turf = get_turf(nest_structural_base)
var/obj/effect/alien/weeds/supplier_weeds = locate(/obj/effect/alien/weeds) in supplier_turf
if(!supplier_weeds)
- to_chat(src, SPAN_XENOBOLDNOTICE("There are no weeds here! Nesting hosts requires hive weeds."))
- return
-
- if(supplier_weeds.weed_strength < WEED_LEVEL_HIVE)
- to_chat(src, SPAN_XENOBOLDNOTICE("The weeds here are not strong enough for nesting hosts."))
+ to_chat(src, SPAN_XENOBOLDNOTICE("There are no weeds here! Nesting hosts requires any sort of weeds."))
return
if(!supplier_turf.density)
@@ -749,15 +745,18 @@
if(!host_to_nest.Adjacent(supplier_turf))
to_chat(src, SPAN_XENONOTICE("The host must be directly next to the wall its being nested on!"))
+ step(host_to_nest, dir_to_nest)
return
if(!locate(dir_to_nest) in GLOB.cardinals)
to_chat(src, SPAN_XENONOTICE("The host must be directly next to the wall its being nested on!"))
+ step_to(host_to_nest, src)
return
for(var/obj/structure/bed/nest/preexisting_nest in get_turf(host_to_nest))
if(preexisting_nest.dir == dir_to_nest)
to_chat(src, SPAN_XENONOTICE("There is already a host nested here!"))
+ step_to(host_to_nest, src)
return
var/obj/structure/bed/nest/applicable_nest = new(get_turf(host_to_nest))
diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
index d1b70349e6..b9e44b142f 100644
--- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
+++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
@@ -79,13 +79,13 @@
health = 5
maxHealth = 5
var/crit_health = -100 // What negative healthy they die in.
- var/gib_chance = 5 // % chance of them exploding when taking damage. Goes up with damage inflicted.
+ var/gib_chance = 80 // % chance of them exploding when taking damage. Goes up with damage inflicted.
speed = -0.5 // Speed. Positive makes you go slower. (1.5 is equivalent to FAT mutation)
can_crawl = FALSE
melee_damage_lower = 5
melee_damage_upper = 10
var/melee_vehicle_damage = 10
- var/claw_type = CLAW_TYPE_NORMAL
+ var/claw_type = CLAW_TYPE_SHARP
var/burn_damage_lower = 0
var/burn_damage_upper = 0
var/plasma_stored = 10
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm
index af8f33cf1c..7058376992 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm
@@ -135,7 +135,7 @@
if(istype(O, /obj/vehicle/multitile))
var/obj/vehicle/multitile/R = O
- R.take_damage_type((1 / A.acid_strength) * 40, "acid", src)
+ R.take_damage_type(40 / A.acid_delay, "acid", src)
visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff at \the [O]. It sizzles under the bubbling mess of acid!"), \
SPAN_XENOWARNING("You vomit globs of vile stuff at [O]. It sizzles under the bubbling mess of acid!"), null, 5)
playsound(loc, "sound/bullets/acid_impact1.ogg", 25)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm
index ce5492adc3..e604a09f96 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm
@@ -220,11 +220,15 @@
// (note that if a collided atom does not match any of the key types, defaults to the appropriate X_launch_collision proc)
default_ai_action = TRUE
- var/prob_chance = 80
/datum/action/xeno_action/activable/pounce/process_ai(mob/living/carbon/xenomorph/pouncing_xeno, delta_time)
- if(get_dist(pouncing_xeno, pouncing_xeno.current_target) > distance || !DT_PROB(prob_chance, delta_time))
- return
+ . = ..()
+
+ if(get_dist(pouncing_xeno, pouncing_xeno.current_target) > distance)
+ return FALSE
+
+ if(!DT_PROB(ai_prob_chance, delta_time))
+ return FALSE
var/turf/last_turf = pouncing_xeno.loc
var/clear = TRUE
@@ -240,9 +244,10 @@
pouncing_xeno.remove_temp_pass_flags(PASS_OVER_THROW_MOB)
if(!clear)
- return
+ return FALSE
use_ability_async(pouncing_xeno.current_target)
+ return TRUE
/datum/action/xeno_action/activable/pounce/New()
. = ..()
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm
index 7a8151d8aa..512a7478be 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm
@@ -446,6 +446,8 @@
LM.pass_flags = pounce_pass_flags
LM.collision_callbacks = pounce_callbacks
+ SEND_SIGNAL(owner, COMSIG_XENO_USED_POUNCE, A)
+
X.launch_towards(LM)
X.update_icons()
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm
index 0c9358119d..e49cc72484 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm
@@ -8,7 +8,7 @@
// Config options
distance = 6
knockdown = FALSE
- knockdown_duration = 2.5
+ knockdown_duration = 1.5
freeze_self = TRUE
freeze_time = 15
can_be_shield_blocked = TRUE
@@ -72,9 +72,26 @@
action_type = XENO_ACTION_ACTIVATE
xeno_cooldown = 100
plasma_cost = 20
+ default_ai_action = TRUE
var/buff_duration = 50
+/datum/action/xeno_action/onclick/lurker_assassinate/process_ai(mob/living/carbon/xenomorph/using_xeno, delta_time)
+ . = ..()
+
+ if(using_xeno.next_move <= world.time)
+ return FALSE
+
+ if(get_dist(using_xeno, using_xeno.current_target) > 1)
+ return FALSE
+
+ if(!DT_PROB(ai_prob_chance, delta_time))
+ return FALSE
+
+ use_ability_async(using_xeno.current_target)
+
+ return TRUE
+
// VAMP LURKER ABILITIES
/datum/action/xeno_action/activable/pounce/rush
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm
index 3975a229bb..e926349af6 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm
@@ -1,74 +1,76 @@
-/datum/action/xeno_action/activable/pierce/use_ability(atom/A)
- var/mob/living/carbon/xenomorph/X = owner
+/datum/action/xeno_action/activable/pierce/use_ability(atom/targetted_atom)
+ var/mob/living/carbon/xenomorph/source_xeno = owner
if (!action_cooldown_check())
return
- if (!X.check_state())
+ if (!source_xeno.check_state())
return
- if(!A || A.layer >= FLY_LAYER || !isturf(X.loc))
+ if(!targetted_atom || targetted_atom.layer >= FLY_LAYER || !isturf(source_xeno.loc))
return
if (!check_and_use_plasma_owner())
return
+ //X = xeno user, A = target atom
+ var/list/turf/target_turfs = getline2(source_xeno, targetted_atom, include_from_atom = FALSE)
+ var/length_of_line = LAZYLEN(target_turfs)
+ if(length_of_line > 3)
+ target_turfs = target_turfs.Copy(1, 4)
+
// Get list of target mobs
var/list/target_mobs = list()
+ var/blocked = FALSE
-
- var/list/target_turfs = list()
- var/facing = Get_Compass_Dir(X, A)
- var/turf/T = X.loc
- var/turf/temp = X.loc
-
- for(var/x in 0 to 2)
- temp = get_step(T, facing)
- if(!temp || temp.density || temp.opacity)
- break
-
- var/blocked = FALSE
- for(var/obj/structure/S in temp)
- if(istype(S, /obj/structure/window/framed))
- var/obj/structure/window/framed/W = S
- if(!W.unslashable)
- W.deconstruct(disassembled = FALSE)
-
- if(S.opacity)
- blocked = TRUE
- break
+ for(var/turf/path_turf as anything in target_turfs)
if(blocked)
break
+ //Check for walls etc and stop if we encounter one
+ if(path_turf.density)
+ break
- T = temp
- target_turfs += T
-
- for(var/turf/target_turf in target_turfs)
- for(var/mob/living/carbon/H in target_turf)
- if (!isxeno_human(H) || X.can_not_harm(H))
- continue
-
- if(!(H in target_mobs))
- target_mobs += H
-
- X.visible_message(SPAN_XENODANGER("[X] slashes its claws through the area in front of it!"), SPAN_XENODANGER("You slash your claws through the area in front of you!"))
- X.animation_attack_on(A, 15)
-
- X.emote("roar")
-
- // Loop through our turfs, finding any humans there and dealing damage to them
- for (var/mob/living/carbon/H in target_mobs)
- if (!isxeno_human(H) || X.can_not_harm(H))
+ //Check for structures such as doors
+ for(var/atom/path_content as anything in path_turf.contents)
+ if(isobj(path_content))
+ var/obj/object = path_content
+ //If we shouldn't be able to pass through it then stop at this turf
+ if(object.density && !object.throwpass)
+ blocked = TRUE
+ break
+
+ if(istype(object, /obj/structure/window/framed))
+ var/obj/structure/window/framed/framed_window = object
+ if(!framed_window.unslashable)
+ framed_window.deconstruct(disassembled = FALSE)
+
+ //Check for mobs and add them to our target list for damage
+ if(iscarbon(path_content))
+ var/mob/living/carbon/mob_to_act = path_content
+ if(!isxeno_human(mob_to_act) || source_xeno.can_not_harm(mob_to_act))
+ continue
+
+ if(!(mob_to_act in target_mobs))
+ target_mobs += mob_to_act
+
+ source_xeno.visible_message(SPAN_XENODANGER("[source_xeno] slashes its tail through the area in front of it!"), SPAN_XENODANGER("You slash your tail through the area in front of you!"))
+ source_xeno.animation_attack_on(targetted_atom, 15)
+
+ source_xeno.emote("roar")
+
+ // Loop through our mob list, finding any humans there and dealing damage to them
+ for (var/mob/living/carbon/current_mob in target_mobs)
+ if (!isxeno_human(current_mob) || source_xeno.can_not_harm(current_mob))
continue
- if (H.stat == DEAD)
+ if (current_mob.stat == DEAD)
continue
- X.flick_attack_overlay(H, "slash")
- H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE, null, 20)
+ current_mob.flick_attack_overlay(current_mob, "slash")
+ current_mob.apply_armoured_damage(get_xeno_damage_slash(current_mob, damage), ARMOR_MELEE, BRUTE, null, 20)
if (target_mobs.len >= shield_regen_threshold)
- if (X.mutation_type == PRAETORIAN_VANGUARD)
- var/datum/behavior_delegate/praetorian_vanguard/BD = X.behavior_delegate
+ if (source_xeno.mutation_type == PRAETORIAN_VANGUARD)
+ var/datum/behavior_delegate/praetorian_vanguard/BD = source_xeno.behavior_delegate
if (istype(BD))
BD.regen_shield()
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm
index 708334d31a..9a29e2cb6d 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm
@@ -130,7 +130,7 @@
if(istype(O, /obj/vehicle/multitile))
var/obj/vehicle/multitile/R = O
- R.take_damage_type((1 / A.acid_strength) * 20, "acid", src)
+ R.take_damage_type(20 / A.acid_delay, "acid", src)
visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff at \the [O]. It sizzles under the bubbling mess of acid!"), \
SPAN_XENOWARNING("You vomit globs of vile stuff at [O]. It sizzles under the bubbling mess of acid!"), null, 5)
playsound(loc, "sound/bullets/acid_impact1.ogg", 25)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
index cd4df54dae..781d958771 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
@@ -10,6 +10,9 @@
/// Whether this action gets added to AI xenos
var/default_ai_action = FALSE
+ /// Chance of use per tick applicable tick
+ var/ai_prob_chance = 80
+
// Cooldown
/// Cooldown of the ability (do not use the cooldown var)
/// Probably should only have the cooldown var, but that is for another rework
diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm
index e85952a435..9219c78e32 100644
--- a/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm
+++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm
@@ -65,7 +65,100 @@
if(T == get_turf(X.current_target))
break
-
if(!X.move_to_next_turf(T))
X.current_target = null
return TRUE
+
+/datum/xeno_ai_movement/proc/ai_move_hive(delta_time)
+ SHOULD_NOT_SLEEP(TRUE)
+ var/mob/living/carbon/xenomorph/retreating_xeno = parent
+
+ if(retreating_xeno.throwing)
+ return
+
+ var/shortest_distance = INFINITY
+ var/turf/closest_hive
+ var/hive_radius
+ for(var/datum/component/ai_behavior_override/hive/hive_component as anything in GLOB.ai_hives)
+ var/turf/potential_hive = hive_component.parent
+ hive_radius = hive_component.hive_radius
+
+ if(potential_hive.z != retreating_xeno.z)
+ continue
+
+ var/xeno_to_potential_hive_distance = get_dist(retreating_xeno, potential_hive)
+ if(xeno_to_potential_hive_distance > shortest_distance)
+ continue
+
+ closest_hive = potential_hive
+ shortest_distance = xeno_to_potential_hive_distance
+
+ if(!closest_hive)
+ return
+
+ if(get_dist(retreating_xeno, closest_hive) <= hive_radius)
+ return ai_strap_host(closest_hive, hive_radius, delta_time)
+
+ var/turf/hive_turf = get_turf(closest_hive)
+ if(retreating_xeno.move_to_next_turf(hive_turf, world.maxx))
+ return TRUE
+
+/datum/xeno_ai_movement/proc/ai_strap_host(turf/closest_hive, hive_radius, delta_time)
+ SHOULD_NOT_SLEEP(TRUE)
+ var/mob/living/carbon/xenomorph/capping_xeno = parent
+
+ if(capping_xeno.throwing)
+ return
+
+ var/turf/nest_turf
+ var/turf/weeded_wall
+
+ var/shortest_distance = INFINITY
+ for(var/turf/potential_nest as anything in shuffle(RANGE_TURFS(hive_radius, closest_hive)))
+ if(potential_nest.density)
+ continue
+
+ if(!potential_nest.weeds)
+ continue
+
+ var/mob/living/carbon/xenomorph/xeno = locate() in potential_nest
+ if(xeno && xeno != capping_xeno)
+ continue
+
+ var/obj/structure/bed/nest/preexisting_nest = locate() in potential_nest
+ if(preexisting_nest && preexisting_nest.buckled_mob)
+ continue
+
+ var/turf/potential_weeded_wall
+ for(var/turf/closed/touching_turf in orange(1, potential_nest))
+ if(!touching_turf.weeds)
+ continue
+
+ if(get_dir(potential_nest, touching_turf) in diagonals)
+ continue
+
+ potential_weeded_wall = touching_turf
+ break
+
+ if(!potential_weeded_wall)
+ continue
+
+ var/xeno_to_potential_nest_distance = get_dist(capping_xeno, potential_nest)
+ if(xeno_to_potential_nest_distance > shortest_distance)
+ continue
+
+ nest_turf = potential_nest
+ weeded_wall = potential_weeded_wall
+ shortest_distance = xeno_to_potential_nest_distance
+
+ if(!nest_turf)
+ return
+
+ if(get_dist(capping_xeno, nest_turf) < 1)
+ if(capping_xeno.get_inactive_hand())
+ capping_xeno.swap_hand()
+ INVOKE_ASYNC(capping_xeno, TYPE_PROC_REF(/mob, do_click), weeded_wall, "", list())
+ return TRUE
+
+ if(capping_xeno.move_to_next_turf(nest_turf))
+ return TRUE
diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm
index c612fdbe79..086000bed4 100644
--- a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm
+++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm
@@ -15,9 +15,6 @@
if(idle_xeno.throwing)
return
- if(idle_xeno.resting)
- return
-
if(home_turf)
if(get_dist(home_turf, idle_xeno) > max_distance_from_home)
home_turf = null
@@ -38,63 +35,27 @@
if(next_home_search > world.time)
return
- var/turf/current_turf = get_turf(idle_xeno.loc)
+ var/turf/current_turf = get_turf(idle_xeno)
next_home_search = world.time + home_search_delay
- if(!current_turf.weeds && current_turf.is_weedable() >= FULLY_WEEDABLE)
- home_turf = current_turf
- else
- var/shortest_distance
- for(var/turf/potential_home as anything in RANGE_TURFS(home_locate_range, current_turf))
-
- var/area/found_area = get_area(potential_home)
- if(found_area.flags_area & AREA_NOTUNNEL)
- continue
-
- if(found_area.flags_area & AREA_UNWEEDABLE)
- continue
-
- if(!found_area.can_build_special)
- continue
-
- if(potential_home in blacklisted_turfs)
- continue
-
- if(potential_home.weeds)
- continue
- if(potential_home.is_weedable() < FULLY_WEEDABLE)
- continue
+ var/shortest_distance
+ for(var/turf/potential_home as anything in shuffle(RANGE_TURFS(home_locate_range, current_turf)))
+ if(!check_turf(potential_home))
+ continue
- if(locate(/obj/effect/alien/weeds/node) in range(3, potential_home))
- continue
+ if(!isnull(shortest_distance) && get_dist(idle_xeno, potential_home) > shortest_distance)
+ continue
- if(potential_home.density)
- continue
-
- var/blocked = FALSE
- for(var/atom/potential_blocker as anything in potential_home)
- if(potential_blocker.can_block_movement)
- blocked = TRUE
- break
-
- if(blocked)
- continue
-
- for(var/obj/structure/struct in potential_home)
- if(struct.density && !(struct.flags_atom & ON_BORDER))
- continue
-
- if(shortest_distance && get_dist(idle_xeno, potential_home) > shortest_distance)
- continue
-
- shortest_distance = get_dist(idle_xeno, potential_home)
- home_turf = potential_home
+ shortest_distance = get_dist(idle_xeno, potential_home)
+ home_turf = potential_home
if(!home_turf)
if(!idle_xeno.resting)
idle_xeno.lay_down()
return
+ idle_xeno.resting = FALSE
+
if(home_turf == last_home_turf)
blacklisted_turfs += home_turf
addtimer(CALLBACK(src, PROC_REF(unblacklist_turf), home_turf), BLACKLIST_TURF_TIMEOUT)
@@ -103,3 +64,44 @@
/datum/xeno_ai_movement/drone/proc/unblacklist_turf(turf/unblacklisting_turf)
blacklisted_turfs -= unblacklisting_turf
+
+/datum/xeno_ai_movement/drone/proc/check_turf(turf/checked_turf)
+ var/area/found_area = get_area(checked_turf)
+ if(found_area.flags_area & AREA_NOTUNNEL)
+ return FALSE
+
+ if(found_area.flags_area & AREA_UNWEEDABLE)
+ return FALSE
+
+ if(!found_area.can_build_special)
+ return FALSE
+
+ if(checked_turf in blacklisted_turfs)
+ return FALSE
+
+ if(checked_turf.weeds)
+ return FALSE
+
+ if(checked_turf.is_weedable() < FULLY_WEEDABLE)
+ return FALSE
+
+ if(locate(/obj/effect/alien/weeds/node) in range(3, checked_turf))
+ return FALSE
+
+ if(checked_turf.density)
+ return FALSE
+
+ var/blocked = FALSE
+ for(var/atom/potential_blocker as anything in checked_turf)
+ if(parent != potential_blocker && (potential_blocker.density || potential_blocker.can_block_movement))
+ blocked = TRUE
+ break
+
+ if(blocked)
+ return FALSE
+
+ for(var/obj/structure/struct in checked_turf)
+ if(struct.density && !(struct.flags_atom & ON_BORDER))
+ return FALSE
+
+ return TRUE
diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm
index e22b9756be..bbaebfda6e 100644
--- a/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm
+++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm
@@ -17,7 +17,13 @@
if(moving_xeno.throwing)
return
- if(moving_xeno.current_target.is_mob_incapacitated())
+ // Always charge forward if sentries/APCs, no real reason to dodge and weave
+ var/incapacitated_check = TRUE
+ if(istype(moving_xeno.current_target, /mob))
+ var/mob/current_target_mob = moving_xeno.current_target
+ incapacitated_check = current_target_mob.is_mob_incapacitated()
+
+ if(incapacitated_check)
return ..()
check_for_travelling_turf_change(moving_xeno)
diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm
new file mode 100644
index 0000000000..15c4fb257b
--- /dev/null
+++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm
@@ -0,0 +1,271 @@
+/datum/xeno_ai_movement/linger/lurking
+
+ // Are we currently hiding?
+ var/ai_lurking = FALSE
+
+ // Gradually increases the chance of AI to try and bait marines, annoyance accumulate when we lurk (stand invisible) and aware of our target
+ var/annoyance = 0
+
+ // Total baits this xeno has made
+ var/total_baits = 0
+
+ // Distance at which we want to stay from our spotted target
+ var/stalking_distance = 12
+
+ // List of turfs we see and register while lurking
+ var/list/registered_turfs = list()
+
+ // Let's lower this a little bit cause we do some heavy checks while finding our "home"
+ home_locate_range = 10
+
+ max_distance_from_home = 10
+
+#define AI_CHECK_ANNOYANCE_COOLDOWN 2.5 SECONDS
+
+/datum/xeno_ai_movement/linger/lurking/New(mob/living/carbon/xenomorph/parent)
+ . = ..()
+
+ RegisterSignal(parent, COMSIG_XENO_HANDLE_AI_SHOT, PROC_REF(stop_lurking))
+ RegisterSignal(parent, COMSIG_XENO_HANDLE_CRIT, PROC_REF(stop_lurking))
+ RegisterSignal(parent, COMSIG_XENO_USED_POUNCE, PROC_REF(stop_lurking))
+
+ addtimer(CALLBACK(src, PROC_REF(check_annoyance)), AI_CHECK_ANNOYANCE_COOLDOWN, TIMER_UNIQUE|TIMER_LOOP|TIMER_DELETE_ME)
+
+ start_lurking()
+
+#undef AI_CHECK_ANNOYANCE_COOLDOWN
+
+/datum/xeno_ai_movement/linger/lurking/ai_move_idle(delta_time)
+ var/mob/living/carbon/xenomorph/idle_xeno = parent
+ if(idle_xeno.throwing)
+ return
+
+ if(home_turf)
+ if(get_dist(home_turf, idle_xeno) <= 0)
+ start_lurking()
+ return
+
+ if(!idle_xeno.move_to_next_turf(home_turf))
+ home_turf = null
+ return
+
+ return
+
+ if(next_home_search > world.time)
+ return
+
+ var/turf/current_turf = get_turf(idle_xeno)
+
+ if(!current_turf)
+ return
+
+ next_home_search = world.time + home_search_delay
+ var/shortest_distance = INFINITY
+ var/turf/non_preferred_turf
+ for(var/turf/potential_home as anything in shuffle(RANGE_TURFS(home_locate_range, current_turf)))
+ if(potential_home.density)
+ continue
+
+ var/blocked = FALSE
+ for(var/atom/potential_blocker as anything in potential_home)
+ if(potential_blocker != idle_xeno && (potential_blocker.can_block_movement || potential_blocker.density))
+ blocked = TRUE
+ break
+
+ if(blocked)
+ continue
+
+ var/preferred = FALSE
+ for(var/turf/closed/touching_turf in orange(1, potential_home))
+ preferred = TRUE
+ break
+
+ var/atom/movable/our_target = idle_xeno.current_target
+ if(our_target)
+ var/potential_home_dir = get_dir(idle_xeno, potential_home)
+ var/current_target_dir = get_dir(idle_xeno, our_target)
+
+ if(current_target_dir == potential_home_dir || current_target_dir == turn(potential_home_dir, 45) || current_target_dir == turn(potential_home_dir, -45))
+ continue
+
+ if(get_dist(potential_home, our_target) > stalking_distance)
+ continue
+
+ var/xeno_to_potential_home_distance = get_dist(idle_xeno, potential_home)
+ if(xeno_to_potential_home_distance > shortest_distance)
+ continue
+
+ if(preferred)
+ home_turf = potential_home
+ shortest_distance = xeno_to_potential_home_distance
+ continue
+
+ if(xeno_to_potential_home_distance < get_dist(idle_xeno, non_preferred_turf))
+ non_preferred_turf = potential_home
+ continue
+
+ if(!home_turf)
+ home_turf = non_preferred_turf
+ return
+
+/datum/xeno_ai_movement/linger/lurking/ai_move_target(delta_time)
+ var/mob/living/carbon/xenomorph/moving_xeno = parent
+ if(moving_xeno.throwing)
+ return
+
+ var/incapacitated_check = TRUE
+ if(istype(moving_xeno.current_target, /mob))
+ var/mob/current_target_mob = moving_xeno.current_target
+ incapacitated_check = current_target_mob.is_mob_incapacitated()
+
+ if(incapacitated_check)
+ return ..()
+
+ var/turf/target_turf = get_turf(moving_xeno.current_target)
+ if(ai_lurking || get_dist(moving_xeno, target_turf) > world.view + 1)
+ if(get_dist(moving_xeno, target_turf) > stalking_distance)
+ home_turf = null
+ return moving_xeno.move_to_next_turf(target_turf)
+ return ai_move_idle(delta_time)
+
+ annoyance = 0
+ check_for_travelling_turf_change(moving_xeno)
+
+ if(!moving_xeno.move_to_next_turf(travelling_turf))
+ travelling_turf = target_turf
+ return TRUE
+
+/datum/xeno_ai_movement/linger/lurking/proc/check_annoyance()
+ var/mob/living/carbon/xenomorph/annoyed_xeno = parent
+ if(!annoyed_xeno.current_target || !ai_lurking)
+ return
+
+ var/target_distance = get_dist(annoyed_xeno, annoyed_xeno.current_target)
+
+ if(target_distance < world.view)
+ return
+
+ if(target_distance > 10)
+ annoyance = 0
+ total_baits = 0
+ return
+
+ annoyance++
+
+ if(prob(annoyance))
+ try_bait()
+
+#define LURKER_BAIT_TYPES list("Taunt","Emote","Interact")
+#define LURKER_BAIT_EMOTES list("growl","roar","hiss","needshelp")
+#define LURKER_BAIT_TAUNTS list("Come here, little host","I won't bite","I see you","Safe to go, little one")
+#define LURKER_BAITS_BEFORE_AMBUSH 3
+
+/datum/xeno_ai_movement/linger/lurking/proc/try_bait(no_interact)
+ var/mob/living/carbon/xenomorph/baiting_xeno = parent
+ if(baiting_xeno.throwing)
+ return
+
+ if(total_baits >= LURKER_BAITS_BEFORE_AMBUSH)
+ stop_lurking()
+ total_baits = 0
+ return
+
+ var/bait_types = LURKER_BAIT_TYPES
+ if(no_interact)
+ bait_types -= "Interact"
+
+ var/bait = pick(bait_types)
+ switch(bait)
+ if("Emote")
+ baiting_xeno.emote(pick(LURKER_BAIT_EMOTES))
+ if("Taunt")
+ baiting_xeno.say(pick(LURKER_BAIT_TAUNTS))
+ if("Interact")
+ if(!interact_random(baiting_xeno))
+ return try_bait(no_interact = TRUE)
+
+ total_baits++
+ annoyance = 0
+ return bait
+
+#undef LURKER_BAIT_TYPES
+#undef LURKER_BAIT_EMOTES
+#undef LURKER_BAIT_TAUNTS
+#undef LURKER_BAITS_BEFORE_AMBUSH
+
+/datum/xeno_ai_movement/linger/lurking/proc/interact_random(mob/living/carbon/xenomorph/X)
+ for(var/obj/potential_interaction in orange(1, X))
+ if(istype(potential_interaction, /obj/structure/window_frame))
+ continue
+ if(istype(potential_interaction, /obj/structure/pipes))
+ continue
+ if(istype(potential_interaction, /obj/structure/sign))
+ continue
+ if(!potential_interaction.xeno_ai_act(X))
+ continue
+ return TRUE
+ return FALSE
+
+/datum/xeno_ai_movement/linger/lurking/proc/start_lurking()
+ SIGNAL_HANDLER
+ if(ai_lurking)
+ return
+
+ var/mob/living/carbon/xenomorph/lurking_xeno = parent
+ animate(lurking_xeno, alpha = 20, time = 0.5 SECONDS, easing = QUAD_EASING)
+ lurking_xeno.set_movement_intent(MOVE_INTENT_WALK)
+ register_turf_signals()
+ ai_lurking = TRUE
+
+ RegisterSignal(parent, COMSIG_MOVABLE_MOVED, PROC_REF(lurking_parent_moved))
+
+ var/datum/action/xeno_action/activable/pounce/lurker/LPA = get_xeno_action_by_type(lurking_xeno, /datum/action/xeno_action/activable/pounce/lurker)
+ if(LPA && istype(LPA))
+ LPA.knockdown = TRUE
+ LPA.freeze_self = TRUE
+
+ INVOKE_ASYNC(lurking_xeno, TYPE_PROC_REF(/mob, stop_pulling))
+
+/datum/xeno_ai_movement/linger/lurking/proc/stop_lurking()
+ SIGNAL_HANDLER
+ if(!ai_lurking)
+ return
+
+ var/mob/living/carbon/xenomorph/lurking_xeno = parent
+ animate(lurking_xeno, alpha = initial(lurking_xeno.alpha), time = 0.2 SECONDS, easing = QUAD_EASING)
+ lurking_xeno.set_movement_intent(MOVE_INTENT_RUN)
+ unregister_turf_signals()
+ ai_lurking = FALSE
+
+ UnregisterSignal(parent, COMSIG_MOVABLE_MOVED)
+
+ INVOKE_ASYNC(lurking_xeno, TYPE_PROC_REF(/mob, stop_pulling))
+
+/datum/xeno_ai_movement/linger/lurking/proc/register_turf_signals()
+ for(var/turf/open/cycled_open_turf in view(world.view, parent))
+ RegisterSignal(cycled_open_turf, COMSIG_TURF_ENTERED, PROC_REF(set_target))
+ registered_turfs += cycled_open_turf
+
+ var/mob/living/carbon/human/possible_target = locate() in cycled_open_turf
+ if(possible_target && (!parent.current_target || get_dist(parent, possible_target) < get_dist(parent, parent.current_target)))
+ parent.current_target = possible_target
+
+/datum/xeno_ai_movement/linger/lurking/proc/unregister_turf_signals()
+ for(var/turf/open/cycled_open_turf in registered_turfs)
+ UnregisterSignal(cycled_open_turf, COMSIG_TURF_ENTERED)
+ registered_turfs.Cut()
+
+/datum/xeno_ai_movement/linger/lurking/proc/set_target(turf/hooked, atom/movable/entering_atom)
+ SIGNAL_HANDLER
+
+ if(!istype(entering_atom, /mob/living/carbon/human))
+ return
+
+ if(!parent.current_target || get_dist(parent, entering_atom) < get_dist(parent, parent.current_target))
+ parent.current_target = entering_atom
+
+/datum/xeno_ai_movement/linger/lurking/proc/lurking_parent_moved(atom/movable/moving_atom, atom/oldloc, direction, Forced)
+ SIGNAL_HANDLER
+
+ unregister_turf_signals()
+ register_turf_signals()
diff --git a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm
index 31b9a322b1..48f4078858 100644
--- a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm
+++ b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm
@@ -1,7 +1,6 @@
/mob/living/carbon/xenomorph
// AI stuff
- var/flags_ai = XENO_AI_NO_DESPAWN
- var/mob/current_target
+ var/atom/movable/current_target
var/next_path_generation = 0
var/list/current_path
@@ -39,12 +38,16 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
return new /datum/xeno_ai_movement(src)
/mob/living/carbon/xenomorph/proc/handle_ai_shot(obj/projectile/P)
- if(!current_target && P.firer)
- var/distance = get_dist(src, P.firer)
- if(distance > max_travel_distance)
- return
+ SEND_SIGNAL(src, COMSIG_XENO_HANDLE_AI_SHOT, P)
- SSxeno_pathfinding.calculate_path(src, P.firer, distance, src, CALLBACK(src, PROC_REF(set_path)), list(src, P.firer))
+ if(current_target || !P.firer)
+ return
+
+ var/distance = get_dist(src, P.firer)
+ if(distance > max_travel_distance)
+ return
+
+ SSxeno_pathfinding.calculate_path(src, P.firer, distance, src, CALLBACK(src, PROC_REF(set_path)), list(src, P.firer))
/mob/living/carbon/xenomorph/proc/register_ai_action(datum/action/xeno_action/XA)
if(XA.owner != src)
@@ -66,13 +69,25 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
current_path = null
return TRUE
- if(QDELETED(current_target) || current_target.stat != CONSCIOUS || get_dist(current_target, src) > ai_range)
+ var/datum/component/ai_behavior_override/behavior_override = check_overrides()
+
+ if(behavior_override?.process_override_behavior(src, delta_time))
+ return TRUE
+
+ var/stat_check = FALSE
+ if(istype(current_target, /mob))
+ var/mob/current_target_mob = current_target
+ stat_check = (current_target_mob.stat != CONSCIOUS)
+
+ if(QDELETED(current_target) || stat_check || get_dist(current_target, src) > ai_range)
current_target = get_target(ai_range)
if(QDELETED(src))
return TRUE
if(current_target)
resting = FALSE
+ if(prob(5))
+ emote("hiss")
return TRUE
a_intent = INTENT_HARM
@@ -96,8 +111,19 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
if(XA.process_ai(src, delta_time) == PROCESS_KILL)
unregister_ai_action(XA)
- if(get_dist(src, current_target) <= 1 && DT_PROB(XENO_SLASH, delta_time))
+ if(!current_target || !DT_PROB(XENO_SLASH, delta_time))
+ return
+
+ var/list/turf/turfs_to_dist_check = list(get_turf(current_target))
+
+ if(istype(current_target, /atom/movable) && length(current_target.locs) > 1)
+ turfs_to_dist_check = get_multitile_turfs_to_check()
+
+ for(var/turf/checked_turf as anything in turfs_to_dist_check)
+ if(get_dist(src, checked_turf) > 1)
+ continue
INVOKE_ASYNC(src, PROC_REF(do_click), current_target, "", list())
+ return
/** Controls movement when idle. Called by process_ai */
/mob/living/carbon/xenomorph/proc/ai_move_idle(delta_time)
@@ -111,7 +137,9 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
CRASH("No valid movement handler for [src]!")
return ai_movement_handler.ai_move_target(delta_time)
-/atom/proc/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/atom/proc/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
+ if(get_turf(src) == target)
+ return 0
return INFINITY
// Called whenever an obstacle is encountered but xeno_ai_obstacle returned something else than infinite
@@ -172,9 +200,9 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
if(!can_move_and_apply_move_delay())
return TRUE
-
var/turf/next_turf = current_path[current_path.len]
var/list/L = LinkBlocked(src, loc, next_turf, list(src, current_target), TRUE)
+ L += SSxeno_pathfinding.check_special_blockers(src, next_turf)
for(var/a in L)
var/atom/A = a
if(A.xeno_ai_obstacle(src, get_dir(loc, next_turf)) == INFINITY)
@@ -190,58 +218,126 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
return TRUE
+/// Checks and returns the nearest override for behavior
+/mob/living/carbon/xenomorph/proc/check_overrides()
+ var/shortest_distance = INFINITY
+ var/datum/component/ai_behavior_override/closest_valid_override
+ for(var/datum/component/ai_behavior_override/cycled_override in GLOB.all_ai_behavior_overrides)
+ var/distance = get_dist(src, cycled_override.parent)
+ var/validity = cycled_override.check_behavior_validity(src, distance)
+
+ if(!validity)
+ continue
+
+ if(distance >= shortest_distance)
+ continue
+
+ shortest_distance = distance
+ closest_valid_override = cycled_override
+
+ return closest_valid_override
+
+#define EXTRA_CHECK_DISTANCE_MULTIPLIER 0.20
+
/mob/living/carbon/xenomorph/proc/get_target(range)
- var/list/viable_humans = list()
- var/list/viable_vehicles = list()
- var/list/viable_defenses = list()
+ var/list/viable_targets = list()
+ var/atom/movable/closest_target
var/smallest_distance = INFINITY
- for(var/mob/living/carbon/human/alive_human as anything in GLOB.alive_human_list)
- if(alive_human.species.flags & IS_SYNTHETIC)
- return pick(viable_humans)
- if((alive_human.status_flags & XENO_HOST) && !ai_target_xenohost)
+
+ for(var/mob/living/carbon/human/potential_alive_human_target as anything in GLOB.alive_human_list)
+ if(z != potential_alive_human_target.z)
continue
- if(z != alive_human.z)
+
+ if(!check_mob_target(potential_alive_human_target))
continue
- var/distance = get_dist(src, alive_human)
- if(distance < ai_range && alive_human.stat == CONSCIOUS)
- viable_humans += alive_human
- smallest_distance = min(distance, smallest_distance)
+ var/distance = get_dist(src, potential_alive_human_target)
- for(var/l in GLOB.all_multi_vehicles)
- var/obj/vehicle/multitile/V = l
- if(z != V.z)
+ if(distance > ai_range)
continue
- var/distance = get_dist(src, V)
- if(distance < ai_range)
- viable_vehicles += V
- smallest_distance = min(distance, smallest_distance)
+ viable_targets += potential_alive_human_target
- for(var/l in GLOB.all_defenses)
- var/obj/structure/machinery/defenses/S = l
- if(z != S.z)
+ if(smallest_distance <= distance)
continue
- var/distance = get_dist(src, S)
- if(distance < ai_range)
- viable_defenses += S
- smallest_distance = min(distance, smallest_distance)
+ closest_target = potential_alive_human_target
+ smallest_distance = distance
+
+ for(var/obj/vehicle/multitile/potential_vehicle_target as anything in GLOB.all_multi_vehicles)
+ if(z != potential_vehicle_target.z)
+ continue
+ var/distance = get_dist(src, potential_vehicle_target)
- if(smallest_distance > RANGE_TO_DESPAWN_XENO && !(XENO_AI_NO_DESPAWN & flags_ai))
- remove_ai()
- qdel(src)
- return
+ if(distance > ai_range)
+ continue
+
+ if(potential_vehicle_target.health <= 0)
+ var/skip_vehicle = TRUE
+
+ var/list/interior_living_mobs = potential_vehicle_target.interior.get_passengers()
+ for(var/mob/living/carbon/human/human_mob in interior_living_mobs)
+ if(!check_mob_target(human_mob))
+ continue
+
+ skip_vehicle = FALSE
+
+ if(skip_vehicle)
+ continue
- if(length(viable_humans))
- return pick(viable_humans)
+ viable_targets += potential_vehicle_target
- if(length(viable_vehicles))
- return pick(viable_vehicles)
+ if(smallest_distance <= distance)
+ continue
+
+ closest_target = potential_vehicle_target
+ smallest_distance = distance
+
+ for(var/obj/structure/machinery/defenses/potential_defense_target as anything in GLOB.all_active_defenses)
+ if(z != potential_defense_target.z)
+ continue
- if(length(viable_defenses))
- return pick(viable_defenses)
+ var/distance = get_dist(src, potential_defense_target)
+
+ if(distance > ai_range)
+ continue
+
+ viable_targets += potential_defense_target
+
+ if(smallest_distance <= distance)
+ continue
+
+ closest_target = potential_defense_target
+ smallest_distance = distance
+
+ var/extra_check_distance = round(smallest_distance * EXTRA_CHECK_DISTANCE_MULTIPLIER)
+
+ if(extra_check_distance < 1)
+ return closest_target
+
+ var/list/extra_checked = orange(extra_check_distance, closest_target)
+
+ var/list/final_targets = extra_checked & viable_targets
+
+ return length(final_targets) ? pick(final_targets) : closest_target
+
+#undef EXTRA_CHECK_DISTANCE_MULTIPLIER
+
+/mob/living/carbon/xenomorph/proc/check_mob_target(mob/living/carbon/human/checked_human)
+ if(checked_human.species.flags & IS_SYNTHETIC)
+ return FALSE
+
+ if(HAS_TRAIT(checked_human, TRAIT_NESTED))
+ return FALSE
+
+ if(FACTION_XENOMORPH in checked_human.faction_group)
+ return FALSE
+
+ if(checked_human.stat != CONSCIOUS)
+ return FALSE
+
+ return TRUE
/mob/living/carbon/xenomorph/proc/make_ai()
SHOULD_CALL_PARENT(TRUE)
@@ -264,60 +360,36 @@ GLOBAL_LIST_INIT(ai_target_limbs, list(
SHOULD_CALL_PARENT(TRUE)
SSxeno_ai.remove_ai(src)
-GLOBAL_LIST_EMPTY_TYPED(xeno_ai_spawns, /obj/effect/landmark/xeno_ai)
-/obj/effect/landmark/xeno_ai
- name = "Xeno AI Spawn"
- var/list/spawned_xenos
- var/remaining_spawns = 5
-
- var/spawn_radius = 5
- var/list/spawnable_turfs
-
-/obj/effect/landmark/xeno_ai/Initialize(mapload, ...)
- . = ..()
- spawned_xenos = list()
-
- GLOB.xeno_ai_spawns += src
- spawnable_turfs = list()
- for(var/i in RANGE_TURFS(spawn_radius, src))
- var/turf/T = i
- if(T == get_turf(src))
- spawnable_turfs += T
- continue
-
- if(T.density)
- continue
-
- var/failed = FALSE
- for(var/a in T)
- var/atom/A = a
- if(A.density)
- failed = TRUE
- break
-
- if(failed)
- continue
-
- for(var/t in getline(T, src))
- var/turf/line = t
- if(line.density)
- failed = TRUE
- break
-
- if(failed)
- continue
-
- spawnable_turfs += T
-
-/obj/effect/landmark/xeno_ai/proc/reduce_remaining_spawns(mob/living/carbon/xenomorph/X)
- SIGNAL_HANDLER
- remaining_spawns--
-
-/obj/effect/landmark/xeno_ai/proc/handle_xeno_delete(mob/living/carbon/xenomorph/X)
- SIGNAL_HANDLER
- spawned_xenos -= X
-
-/obj/effect/landmark/xeno_ai/Destroy()
- spawnable_turfs = null
- GLOB.xeno_ai_spawns -= src
- return ..()
+/mob/living/carbon/xenomorph/proc/get_multitile_turfs_to_check()
+ var/angle = get_angle(current_target, src)
+ var/turf/base_turf = current_target.locs[1]
+
+ switch(angle)
+ if(315 to 360, 0 to 45) //northerly
+ var/max_y_value = base_turf.y + (round(current_target.bound_height / 32) - 1)
+ var/list/turf/max_y_turfs = list()
+ for(var/turf/cycled_turf as anything in current_target.locs)
+ if(cycled_turf.y == max_y_value)
+ max_y_turfs += cycled_turf
+ return max_y_turfs
+ if(45 to 135) //easterly
+ var/max_x_value = base_turf.x + (round(current_target.bound_width / 32) - 1)
+ var/list/turf/max_x_turfs = list()
+ for(var/turf/cycled_turf as anything in current_target.locs)
+ if(cycled_turf.x == max_x_value)
+ max_x_turfs += cycled_turf
+ return max_x_turfs
+ if(135 to 225) //southerly
+ var/min_y_value = base_turf.y
+ var/list/turf/min_y_turfs = list()
+ for(var/turf/cycled_turf as anything in current_target.locs)
+ if(cycled_turf.y == min_y_value)
+ min_y_turfs += cycled_turf
+ return min_y_turfs
+ if(225 to 315) //westerly
+ var/min_x_value = base_turf.x
+ var/list/turf/min_x_turfs = list()
+ for(var/turf/cycled_turf as anything in current_target.locs)
+ if(cycled_turf.x == min_x_value)
+ min_x_turfs += cycled_turf
+ return min_x_turfs
diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
index 25f6108c14..e3dfccbf88 100644
--- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
+++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
@@ -893,6 +893,7 @@
//Crates, closets, other paraphernalia
/obj/structure/closet/attack_alien(mob/living/carbon/xenomorph/M)
if(!unacidable)
+ playsound(src, 'sound/effects/metalhit.ogg', 25, 1)
M.animation_attack_on(src)
if(!opened)
var/difficulty = 70 //if its just closed we can smash open quite easily
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
index e34138af9a..b3a57643c9 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
@@ -31,7 +31,6 @@
acid_blood_damage = 5
crit_health = 0
crit_grace_time = 0
- gib_chance = 75
mob_size = MOB_SIZE_SMALL
death_fontsize = 2
life_value = 0
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
index 82d80752ec..34a2574f04 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
@@ -35,7 +35,6 @@
tier = 0 //Larva's don't count towards Pop limits
age = XENO_NO_AGE
crit_health = -25
- gib_chance = 25
mob_size = MOB_SIZE_SMALL
base_actions = list(
/datum/action/xeno_action/onclick/xeno_resting,
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm
index c106eb3078..7cb060c1c5 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm
@@ -59,6 +59,66 @@
icon_xeno = 'icons/mob/xenos/lurker.dmi'
icon_xenonid = 'icons/mob/xenonids/lurker.dmi'
+ var/pull_direction
+
+/mob/living/carbon/xenomorph/lurker/launch_towards(datum/launch_metadata/LM)
+ if(!current_target)
+ return ..()
+
+ pull_direction = turn(get_dir(src, current_target), 180)
+
+ if(!(pull_direction in GLOB.cardinals))
+ if(abs(x - current_target.x) < abs(y - current_target.y))
+ pull_direction &= (NORTH|SOUTH)
+ else
+ pull_direction &= (EAST|WEST)
+ return ..()
+
+/mob/living/carbon/xenomorph/lurker/init_movement_handler()
+ return new /datum/xeno_ai_movement/linger/lurking(src)
+
+/mob/living/carbon/xenomorph/lurker/ai_move_target(delta_time)
+ if(throwing)
+ return
+
+ if(pulling)
+ if(!current_target || get_dist(src, current_target) > 10)
+ INVOKE_ASYNC(src, PROC_REF(stop_pulling))
+ return ..()
+ if(can_move_and_apply_move_delay())
+ if(!Move(get_step(loc, pull_direction), pull_direction))
+ pull_direction = turn(pull_direction, pick(45, -45))
+ current_path = null
+ return
+
+ ..()
+
+ if(get_dist(current_target, src) > 1)
+ return
+
+ if(!istype(current_target, /mob))
+ return
+
+ var/mob/current_target_mob = current_target
+
+ if(!current_target_mob.is_mob_incapacitated())
+ return
+
+ if(isxeno(current_target.pulledby))
+ return
+
+ if(!DT_PROB(RUNNER_GRAB, delta_time))
+ return
+
+ INVOKE_ASYNC(src, PROC_REF(start_pulling), current_target)
+ swap_hand()
+
+/mob/living/carbon/xenomorph/lurker/process_ai(delta_time)
+ if(get_active_hand())
+ swap_hand()
+ zone_selected = pick(GLOB.ai_target_limbs)
+ return ..()
+
/datum/behavior_delegate/lurker_base
name = "Base Lurker Behavior Delegate"
@@ -81,7 +141,7 @@
to_chat(bound_xeno, SPAN_XENOHIGHDANGER("You significantly strengthen your attack, slowing [target_carbon]!"))
to_chat(target_carbon, SPAN_XENOHIGHDANGER("You feel a sharp pain as [bound_xeno] slashes you, slowing you down!"))
original_damage *= buffed_slash_damage_ratio
- target_carbon.set_effect(get_xeno_stun_duration(target_carbon, 3), SUPERSLOW)
+ target_carbon.set_effect(get_xeno_stun_duration(target_carbon, 3), SLOW)
next_slash_buffed = FALSE
var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate)
if (ability && istype(ability))
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm
index a3b5158121..d95989693d 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm
@@ -114,7 +114,12 @@
if(get_dist(current_target, src) > 1)
return
- if(!current_target.is_mob_incapacitated())
+ if(!istype(current_target, /mob))
+ return
+
+ var/mob/current_target_mob = current_target
+
+ if(!current_target_mob.is_mob_incapacitated())
return
if(isxeno(current_target.pulledby))
diff --git a/code/modules/mob/living/carbon/xenomorph/life.dm b/code/modules/mob/living/carbon/xenomorph/life.dm
index 65839e9c8c..da66c61bfc 100644
--- a/code/modules/mob/living/carbon/xenomorph/life.dm
+++ b/code/modules/mob/living/carbon/xenomorph/life.dm
@@ -539,6 +539,8 @@ Make sure their actual health updates immediately.*/
if(!lying)
update_canmove()
+ SEND_SIGNAL(src, COMSIG_XENO_HANDLE_CRIT)
+
/mob/living/carbon/xenomorph/proc/handle_luminosity()
var/new_luminosity = 0
if(caste)
diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm
index 90c0ccf805..9d0eb37c1b 100644
--- a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm
+++ b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm
@@ -1,11 +1,30 @@
+/*
+
+Just as a note, eventually it may be prudent to convert most of attack_alien() checks into two parts.
+
+attack_alien() gets called as usual by normal sources but then immediately goes into:
+Can we do the attack_alien(), probably like can_attack_alien() or some such
+And then the usual attack_alien() effect
+
+This way we can keep our obstacle checks up to date with any future attack_alien() changes by calling can_attack_alien()
+
+Future problem for the time being and maybe not worth pursuing :shrug:
+
+As a second note, please god follow the xeno_ai_obstacle chain to atom if possible, things like if(get_turf(src) == target) NEEDING to return 0 most times is very important.
+At bare minimum, make sure the relevant checks from parent types gets copied in if you need to snowflake something.
+
+*/// - Morrow
+
+
// MINERAL DOOR
-/obj/structure/mineral_door/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/structure/mineral_door/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
return DOOR_PENALTY
/obj/structure/mineral_door/xeno_ai_act(mob/living/carbon/xenomorph/X)
X.do_click(src, "", list())
+ return TRUE
-/obj/structure/mineral_door/resin/xeno_ai_obstacle(mob/living/carbon/xenomorph/xeno)
+/obj/structure/mineral_door/resin/xeno_ai_obstacle(mob/living/carbon/xenomorph/xeno, direction, turf/target)
if(xeno.hivenumber != hivenumber)
return ..()
return 0
@@ -14,22 +33,50 @@
acting_xeno.a_intent = INTENT_HELP
. = ..()
+// Poddoors/shutters
+/obj/structure/machinery/door/poddoor/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
+ . = ..()
+ if(!.)
+ return
+
+ if(!(stat & NOPOWER))
+ return
+
+ if(operating)
+ return
+
+ if(unacidable)
+ return
+
+ return DOOR_PENALTY
+
// AIRLOCK
-/obj/structure/machinery/door/airlock/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/structure/machinery/door/airlock/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
+ . = ..()
+ if(!.)
+ return
+
if(locked || welded || isElectrified())
return INFINITY
+
return DOOR_PENALTY
/obj/structure/machinery/door/xeno_ai_act(mob/living/carbon/xenomorph/X)
X.do_click(src, "", list())
+ return TRUE
// OBJECTS
-/obj/structure/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/structure/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
+ . = ..()
+ if(!.)
+ return
+
if(!density)
return 0
if(unslashable && !climbable)
- return ..()
+ return
+
return OBJECT_PENALTY
/obj/structure/xeno_ai_act(mob/living/carbon/xenomorph/X)
@@ -38,10 +85,11 @@
do_climb(X)
return
X.do_click(src, "", list())
+ return TRUE
// HUMANS
-/mob/living/carbon/human/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/mob/living/carbon/human/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
if(status_flags & GODMODE)
return ..()
return HUMAN_PENALTY
@@ -50,23 +98,26 @@
if(status_flags & GODMODE)
return ..()
X.do_click(src, "", list())
+ return TRUE
// VEHICLES
-/obj/vehicle/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/vehicle/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
return VEHICLE_PENALTY
/obj/vehicle/xeno_ai_act(mob/living/carbon/xenomorph/X)
X.do_click(src, "", list())
+ return TRUE
// SENTRY
-/obj/structure/machinery/defenses/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/structure/machinery/defenses/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
return VEHICLE_PENALTY
/obj/structure/machinery/defenses/xeno_ai_act(mob/living/carbon/xenomorph/X)
X.do_click(src, "", list())
+ return TRUE
// WINDOW FRAME
-/obj/structure/window_frame/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/structure/window_frame/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
if(X.claw_type == CLAW_TYPE_VERY_SHARP || (X.claw_type >= CLAW_TYPE_SHARP && !reinforced))
return ..()
return WINDOW_FRAME_PENALTY
@@ -77,12 +128,17 @@
do_climb(X)
// Avoid barricades if possible.
-/obj/structure/barricade/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction)
+/obj/structure/barricade/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction, turf/target)
return BARRICADE_PENALTY
// FIRE
-/obj/flamer_fire/xeno_ai_obstacle(mob/living/carbon/xenomorph/xeno, direction)
+/obj/flamer_fire/xeno_ai_obstacle(mob/living/carbon/xenomorph/xeno, direction, turf/target)
if(xeno.caste?.fire_immunity & (FIRE_IMMUNITY_NO_IGNITE|FIRE_IMMUNITY_NO_DAMAGE))
return 0
return FIRE_PENALTY
+
+// HOLES
+/obj/effect/acid_hole/xeno_ai_act(mob/living/carbon/xenomorph/X)
+ X.do_click(src, "", list())
+ return TRUE
diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm
index d4b8c4ad49..c535c6101d 100644
--- a/code/modules/mob/living/simple_animal/friendly/cat.dm
+++ b/code/modules/mob/living/simple_animal/friendly/cat.dm
@@ -37,9 +37,6 @@
maxbodytemp = 323 //Above 50 Degrees Celcius
holder_type = /obj/item/holder/cat
mob_size = MOB_SIZE_SMALL
- sight = SEE_MOBS
- see_in_dark = 8
- see_invisible = 15
black_market_value = 50
dead_black_market_value = 0
var/miaow_counter = 0
diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm
index 2ada856e78..7196090f0b 100644
--- a/code/modules/mob/living/simple_animal/friendly/mouse.dm
+++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm
@@ -12,7 +12,6 @@
mob_size = MOB_SIZE_SMALL
speak_chance = 1
turns_per_move = 5
- see_in_dark = 6
maxHealth = 5
health = 5
meat_type = /obj/item/reagent_container/food/snacks/meat
@@ -25,8 +24,6 @@
min_oxy = 16 //Require atleast 16kPA oxygen
minbodytemp = 223 //Below -50 Degrees Celcius
maxbodytemp = 323 //Above 50 Degrees Celcius
- universal_speak = 0
- universal_understand = 1
holder_type = /obj/item/holder/mouse
squeeze_under = TRUE
diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm
index aa2c8956b2..403cfcfd1e 100644
--- a/code/modules/mob/living/simple_animal/simple_animal.dm
+++ b/code/modules/mob/living/simple_animal/simple_animal.dm
@@ -15,7 +15,6 @@
var/turns_per_move = 1
var/turns_since_move = 0
- universal_speak = 0 //No, just no.
var/meat_amount = 0
var/meat_type
var/stop_automated_movement = 0 //Use this to temporarely stop random movement or to if you write special movement code for animals.
@@ -59,6 +58,11 @@
black_market_value = 25
dead_black_market_value = 0
+ lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE
+
+ universal_speak = FALSE
+ universal_understand = TRUE
+
/mob/living/simple_animal/Initialize()
. = ..()
SSmob.living_misc_mobs += src
diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm
index 3d74673c53..56951097a1 100644
--- a/code/modules/mob/mob_helpers.dm
+++ b/code/modules/mob/mob_helpers.dm
@@ -28,7 +28,7 @@
//TODO: Integrate defence zones and targeting body parts with the actual organ system, move these into organ definitions.
-//The base miss chance for the different defence zones
+/// The base miss chance for the different defence zones
var/list/global/base_miss_chance = list(
"head" = 10,
"chest" = 0,
diff --git a/code/modules/mob/new_player/sprite_accessories/hair.dm b/code/modules/mob/new_player/sprite_accessories/hair.dm
index 3f624b8d3b..3dfe8bebd5 100644
--- a/code/modules/mob/new_player/sprite_accessories/hair.dm
+++ b/code/modules/mob/new_player/sprite_accessories/hair.dm
@@ -738,3 +738,20 @@
/datum/sprite_accessory/hair/aviator
name = "Aviator"
icon_state = "hair_aviator"
+
+/datum/sprite_accessory/hair/gantleponytail
+ name = "Gentle Ponytail"
+ icon_state = "hair_gantleponytail"
+ gender = FEMALE
+
+/datum/sprite_accessory/hair/edgar
+ name = "Edgar"
+ icon_state = "hair_edgar"
+
+/datum/sprite_accessory/hair/emobun
+ name = "Emo Little Bun"
+ icon_state = "hair_emobun"
+
+/datum/sprite_accessory/hair/taper
+ name = "Taper"
+ icon_state = "hair_taper"
diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm
index 8cd5b148a1..fc62c076c7 100644
--- a/code/modules/mob/say.dm
+++ b/code/modules/mob/say.dm
@@ -65,6 +65,9 @@
if(!src.client) //Somehow
return
+ if(SEND_SIGNAL(src, COMSIG_DEAD_SPEAK, message) & COMPONENT_OVERRIDE_DEAD_SPEAK)
+ return
+
if(!src.client.admin_holder || !(client.admin_holder.rights & R_MOD))
if(!dsay_allowed)
to_chat(src, SPAN_DANGER("Deadchat is globally muted"))
diff --git a/code/modules/movement/movement.dm b/code/modules/movement/movement.dm
index da0c76cba9..4645756e29 100644
--- a/code/modules/movement/movement.dm
+++ b/code/modules/movement/movement.dm
@@ -102,11 +102,14 @@
/atom/movable/proc/forceMove(atom/destination)
. = FALSE
+
if(destination)
. = doMove(destination)
else
CRASH("No valid destination passed into forceMove")
+ if(SEND_SIGNAL(src, COMSIG_MOVABLE_FORCEMOVED, destination))
+ return
/atom/movable/proc/moveToNullspace()
return doMove(null)
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 71d1090b20..e18c1ce3c2 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -19,6 +19,8 @@
flags_equip_slot = SLOT_HEAD
flags_armor_protection = BODY_FLAG_HEAD
attack_verb = list("bapped")
+ ground_offset_x = 9
+ ground_offset_y = 8
var/info //What's actually written on the paper.
var/info_links //A different version of the paper which includes html links at fields and EOF
@@ -42,8 +44,6 @@
/obj/item/paper/Initialize(mapload, photo_list)
. = ..()
- pixel_y = rand(-8, 8)
- pixel_x = rand(-9, 9)
stamps = ""
src.photo_list = photo_list
@@ -382,9 +382,6 @@
/obj/item/paper/attackby(obj/item/P, mob/user)
..()
- var/clown = 0
- if(user.mind && (user.job == "Clown"))
- clown = 1
if(istype(P, /obj/item/paper) || istype(P, /obj/item/photo))
if (istype(P, /obj/item/paper/carbon))
@@ -424,6 +421,7 @@
return
stamps += (stamps=="" ? "
" : "
") + "This paper has been stamped with the [P.name]."
+ playsound(src, 'sound/effects/alien_footstep_medium3.ogg', 20, TRUE, 6)
var/image/stampoverlay = image('icons/obj/items/paper.dmi')
var/x
@@ -439,11 +437,6 @@
stampoverlay.pixel_x = x
stampoverlay.pixel_y = y
- if(istype(P, /obj/item/tool/stamp/clown))
- if(!clown)
- to_chat(user, SPAN_NOTICE("You are totally unable to use the stamp. HONK!"))
- return
-
if(!ico)
ico = new
ico += "paper_[P.icon_state]"
diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm
index 70d6bf3898..b47f630974 100644
--- a/code/modules/paperwork/photocopier.dm
+++ b/code/modules/paperwork/photocopier.dm
@@ -82,8 +82,6 @@
p.update_icon()
p.icon_state = "paper_words"
p.name = bundle.name
- p.pixel_y = rand(-8, 8)
- p.pixel_x = rand(-9, 9)
sleep(15*j)
updateUsrDialog()
else if(href_list["remove"])
diff --git a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm
index 8319234154..df8a7d7bdd 100644
--- a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm
+++ b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm
@@ -85,6 +85,8 @@
var/handful = "shells" //used for 'magazine' boxes that give handfuls to determine what kind for the sprite
can_explode = TRUE
limit_per_tile = 2
+ ground_offset_x = 5
+ ground_offset_y = 5
/obj/item/ammo_box/magazine/empty
empty = TRUE
@@ -102,8 +104,6 @@
while(i < num_of_magazines)
contents += new magazine_type(src)
i++
- pixel_x = rand(-5, 5)
- pixel_y = rand(-5, 5)
update_icon()
/obj/item/ammo_box/magazine/update_icon()
diff --git a/code/modules/projectiles/ammo_boxes/box_structures.dm b/code/modules/projectiles/ammo_boxes/box_structures.dm
index cb119e1a21..77020baab5 100644
--- a/code/modules/projectiles/ammo_boxes/box_structures.dm
+++ b/code/modules/projectiles/ammo_boxes/box_structures.dm
@@ -4,6 +4,7 @@
name = "\improper magazine_box"
icon = 'icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi'
icon_state = "base_m41"
+ unslashable = TRUE
var/obj/item/ammo_box/magazine/item_box
var/can_explode = TRUE
var/burning = FALSE
diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm
index d747525f3f..594ad6b69d 100644
--- a/code/modules/projectiles/ammunition.dm
+++ b/code/modules/projectiles/ammunition.dm
@@ -18,6 +18,8 @@ They're all essentially identical when it comes to getting the job done.
w_class = SIZE_SMALL
throw_speed = SPEED_SLOW
throw_range = 6
+ ground_offset_x = 7
+ ground_offset_y = 6
var/default_ammo = /datum/ammo/bullet
var/caliber = null // This is used for matching handfuls to each other or whatever the mag is. Examples are" "12g" ".44" ".357" etc.
var/current_rounds = -1 //Set this to something else for it not to start with different initial counts.
@@ -50,8 +52,7 @@ They're all essentially identical when it comes to getting the job done.
if(0)
icon_state += "_e" //In case it spawns empty instead.
item_state += "_e"
- pixel_y = rand(-6, 6)
- pixel_x = rand(-7, 7)
+
if(ammo_band_color && ammo_band_icon)
update_ammo_band()
diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm
index 723426b842..3840a029ad 100644
--- a/code/modules/projectiles/gun.dm
+++ b/code/modules/projectiles/gun.dm
@@ -1248,7 +1248,7 @@ and you're good to go.
return TRUE //Nothing else to do here, time to cancel out.
return TRUE
-#define EXECUTION_CHECK (attacked_mob.stat == UNCONSCIOUS || attacked_mob.is_mob_restrained()) && ((user.a_intent == INTENT_GRAB)||(user.a_intent == INTENT_DISARM))
+#define EXECUTION_CHECK (attacked_mob.stat == UNCONSCIOUS || attacked_mob.is_mob_restrained()) && ((user.a_intent == INTENT_GRAB) || (user.a_intent == INTENT_DISARM)) && !(length(user.faction_group & attacked_mob.faction_group)) && ishuman(attacked_mob)
/obj/item/weapon/gun/afterattack(atom/target, mob/user, proximity_flag, click_parameters)
if(!proximity_flag)
diff --git a/code/modules/projectiles/guns/flamer/flamer.dm b/code/modules/projectiles/guns/flamer/flamer.dm
index 42a0e2ce03..dd9a4fd1bf 100644
--- a/code/modules/projectiles/guns/flamer/flamer.dm
+++ b/code/modules/projectiles/guns/flamer/flamer.dm
@@ -23,7 +23,8 @@
/obj/item/attachable/flashlight,
/obj/item/attachable/magnetic_harness,
/obj/item/attachable/attached_gun/extinguisher,
- /obj/item/attachable/attached_gun/flamer_nozzle
+ /obj/item/attachable/attached_gun/extinguisher/pyro,
+ /obj/item/attachable/attached_gun/flamer_nozzle,
)
flags_gun_features = GUN_UNUSUAL_DESIGN|GUN_WIELDED_FIRING_ONLY|GUN_TRIGGER_SAFETY
gun_category = GUN_CATEGORY_HEAVY
@@ -724,12 +725,12 @@ GLOBAL_LIST_EMPTY(flamer_particles)
var/direction_angle = dir2angle(direction)
var/obj/flamer_fire/foundflame = locate() in target
if(!foundflame)
- var/datum/reagent/R = new()
- R.intensityfire = burn_lvl
- R.durationfire = fire_lvl
- R.burn_sprite = burn_sprite
- R.burncolor = f_color
- new/obj/flamer_fire(target, cause_data, R)
+ var/datum/reagent/fire_reag = new()
+ fire_reag.intensityfire = burn_lvl
+ fire_reag.durationfire = fire_lvl
+ fire_reag.burn_sprite = burn_sprite
+ fire_reag.burncolor = f_color
+ new/obj/flamer_fire(target, cause_data, fire_reag)
if(target.density)
return
@@ -742,11 +743,9 @@ GLOBAL_LIST_EMPTY(flamer_particles)
var/angle = 180 - abs( abs( direction_angle - spread_direction_angle ) - 180 ) // the angle difference between the spread direction and initial direction
switch(angle) //this reduces power when the explosion is going around corners
- if (0)
- //no change
if (45)
spread_power *= 0.75
- else //turns out angles greater than 90 degrees almost never happen. This bit also prevents trying to spread backwards
+ if (90 to 180) //turns out angles greater than 90 degrees almost never happen. This bit also prevents trying to spread backwards
continue
switch(spread_direction)
@@ -758,25 +757,29 @@ GLOBAL_LIST_EMPTY(flamer_particles)
if (spread_power < 1)
continue
- var/turf/T = get_step(target, spread_direction)
+ var/turf/picked_turf = get_step(target, spread_direction)
- if(!T) //prevents trying to spread into "null" (edge of the map?)
+ if(!picked_turf) //prevents trying to spread into "null" (edge of the map?)
continue
- if(aerial_flame_level && (T.get_pylon_protection_level() >= aerial_flame_level))
- break
+ if(aerial_flame_level)
+ if(picked_turf.get_pylon_protection_level() >= aerial_flame_level)
+ break
+ var/area/picked_area = get_area(picked_turf)
+ if(CEILING_IS_PROTECTED(picked_area?.ceiling, get_ceiling_protection_level(aerial_flame_level)))
+ break
spawn(0)
- fire_spread_recur(T, cause_data, spread_power, spread_direction, fire_lvl, burn_lvl, f_color, burn_sprite, aerial_flame_level)
+ fire_spread_recur(picked_turf, cause_data, spread_power, spread_direction, fire_lvl, burn_lvl, f_color, burn_sprite, aerial_flame_level)
/proc/fire_spread(turf/target, datum/cause_data/cause_data, range, fire_lvl, burn_lvl, f_color, burn_sprite = "dynamic", aerial_flame_level = TURF_PROTECTION_NONE)
- var/datum/reagent/R = new()
- R.intensityfire = burn_lvl
- R.durationfire = fire_lvl
- R.burn_sprite = burn_sprite
- R.burncolor = f_color
+ var/datum/reagent/fire_reag = new()
+ fire_reag.intensityfire = burn_lvl
+ fire_reag.durationfire = fire_lvl
+ fire_reag.burn_sprite = burn_sprite
+ fire_reag.burncolor = f_color
- new/obj/flamer_fire(target, cause_data, R)
+ new/obj/flamer_fire(target, cause_data, fire_reag)
for(var/direction in alldirs)
var/spread_power = range
switch(direction)
@@ -784,7 +787,11 @@ GLOBAL_LIST_EMPTY(flamer_particles)
spread_power--
else
spread_power -= 1.414 //diagonal spreading
- var/turf/T = get_step(target, direction)
- if(aerial_flame_level && (T.get_pylon_protection_level() >= aerial_flame_level))
- continue
- fire_spread_recur(T, cause_data, spread_power, direction, fire_lvl, burn_lvl, f_color, burn_sprite, aerial_flame_level)
+ var/turf/picked_turf = get_step(target, direction)
+ if(aerial_flame_level)
+ if(picked_turf.get_pylon_protection_level() >= aerial_flame_level)
+ continue
+ var/area/picked_area = get_area(picked_turf)
+ if(CEILING_IS_PROTECTED(picked_area?.ceiling, get_ceiling_protection_level(aerial_flame_level)))
+ continue
+ fire_spread_recur(picked_turf, cause_data, spread_power, direction, fire_lvl, burn_lvl, f_color, burn_sprite, aerial_flame_level)
diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm
index 919a77a802..e9b5bd3aff 100644
--- a/code/modules/projectiles/guns/smartgun.dm
+++ b/code/modules/projectiles/guns/smartgun.dm
@@ -29,7 +29,7 @@
actions_types = list(
/datum/action/item_action/smartgun/toggle_accuracy_improvement,
/datum/action/item_action/smartgun/toggle_ammo_type,
- /datum/action/item_action/smartgun/toggle_auto_fire,
+ ///datum/action/item_action/smartgun/toggle_auto_fire, - Thanks Bales
/datum/action/item_action/smartgun/toggle_lethal_mode,
///datum/action/item_action/smartgun/toggle_motion_detector,
/datum/action/item_action/smartgun/toggle_recoil_compensation,
@@ -213,6 +213,7 @@
// else
// button.icon_state = "template"
+/*
/datum/action/item_action/smartgun/toggle_auto_fire/New(Target, obj/item/holder)
. = ..()
name = "Toggle Auto Fire"
@@ -235,6 +236,8 @@
else
button.icon_state = "template"
+*/
+
/datum/action/item_action/smartgun/toggle_accuracy_improvement/New(Target, obj/item/holder)
. = ..()
name = "Toggle Accuracy Improvement"
@@ -476,6 +479,7 @@
drain -= 50
recalculate_attachment_bonuses()
+/*
/obj/item/weapon/gun/smartgun/proc/toggle_auto_fire(mob/user)
if(!(flags_item & WIELDED))
to_chat(user, "[icon2html(src, usr)] You need to wield \the [src] to enable autofire.")
@@ -514,6 +518,7 @@
long_range_cooldown = initial(long_range_cooldown)
MD.scan()
+
/obj/item/weapon/gun/smartgun/proc/auto_prefire(warned) //To allow the autofire delay to properly check targets after waiting.
if(ishuman(loc) && (flags_item & WIELDED))
var/human_user = loc
@@ -595,7 +600,6 @@
/obj/item/weapon/gun/smartgun/proc/process_shot(mob/living/user, warned)
set waitfor = 0
-
if(!target)
return //Acquire our victim.
@@ -612,6 +616,8 @@
target = null
+*/
+
///obj/item/weapon/gun/smartgun/proc/toggle_motion_detector(mob/user)
// to_chat(user, "[icon2html(src, usr)] You [motion_detector? "disable" : "enable"] \the [src]'s motion detector.")
// playsound(loc,'sound/machines/click.ogg', 25, 1)
diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm
index 89e6594c64..24eddf3159 100644
--- a/code/modules/projectiles/guns/smgs.dm
+++ b/code/modules/projectiles/guns/smgs.dm
@@ -11,7 +11,7 @@
aim_slowdown = SLOWDOWN_ADS_QUICK
wield_delay = WIELD_DELAY_VERY_FAST
attachable_allowed = list(
- /obj/item/attachable/suppressor,
+ /obj/item/attachable/suppressor,
/obj/item/attachable/reddot,
/obj/item/attachable/reflex,
/obj/item/attachable/flashlight,
@@ -50,7 +50,8 @@
/obj/item/attachable/suppressor,
/obj/item/attachable/reddot,
/obj/item/attachable/reflex,
- /obj/item/attachable/angledgrip,
+ /obj/item/attachable/angledgrip,
+ /obj/item/attachable/verticalgrip,
/obj/item/attachable/flashlight/grip,
/obj/item/attachable/stock/smg,
/obj/item/attachable/stock/smg/collapsible,
diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm
index 0e2eba401d..500a58bc67 100644
--- a/code/modules/projectiles/magazines/rifles.dm
+++ b/code/modules/projectiles/magazines/rifles.dm
@@ -79,7 +79,7 @@
/obj/item/ammo_magazine/rifle/m41aMK1
name = "\improper M41A MK1 magazine (10x24mm)"
- desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 95 rounds."
+ desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds."
icon_state = "m41a_mk1"
max_rounds = 99
gun_type = /obj/item/weapon/gun/rifle/m41aMK1
@@ -89,31 +89,31 @@
/obj/item/ammo_magazine/rifle/m41aMK1/ap
name = "\improper M41A MK1 AP magazine (10x24mm)"
- desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 95 rounds. This one contains AP bullets."
+ desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contains AP bullets."
default_ammo = /datum/ammo/bullet/rifle/ap
ammo_band_color = AMMO_BAND_COLOR_AP
/obj/item/ammo_magazine/rifle/m41aMK1/heap
name = "\improper M41A MK1 HEAP magazine (10x24mm)"
- desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 95 rounds. This one contains High-Explosive Armor-Piercing bullets."
+ desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contains High-Explosive Armor-Piercing bullets."
default_ammo = /datum/ammo/bullet/rifle/heap
ammo_band_color = AMMO_BAND_COLOR_HEAP
/obj/item/ammo_magazine/rifle/m41aMK1/incendiary
name = "\improper M41A MK1 incendiary magazine (10x24mm)"
- desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 95 rounds. This one contains incendiary bullets."
+ desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contains incendiary bullets."
default_ammo = /datum/ammo/bullet/rifle/incendiary
ammo_band_color = AMMO_BAND_COLOR_INCENDIARY
/obj/item/ammo_magazine/rifle/m41aMK1/toxin
name = "\improper M41A MK1 toxin magazine (10x24mm)"
- desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 95 rounds. This one contains toxic bullets."
+ desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contains toxic bullets."
default_ammo = /datum/ammo/bullet/rifle/ap/toxin
ammo_band_color = AMMO_BAND_COLOR_TOXIN
/obj/item/ammo_magazine/rifle/m41aMK1/penetrating
name = "\improper M41A MK1 wall-penetrating magazine (10x24mm)"
- desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 95 rounds. This one contains wall-penetrating bullets."
+ desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contains wall-penetrating bullets."
default_ammo = /datum/ammo/bullet/rifle/ap/penetrating
ammo_band_color = AMMO_BAND_COLOR_PENETRATING
//-------------------------------------------------------
diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm
index b01203d0f4..71e0a75aed 100644
--- a/code/modules/projectiles/projectile.dm
+++ b/code/modules/projectiles/projectile.dm
@@ -455,12 +455,31 @@
if(hit_chance) // Calculated from combination of both ammo accuracy and gun accuracy
var/hit_roll = rand(1,100)
+ var/direct_hit = FALSE
- if(original != L || hit_roll > hit_chance-base_miss_chance[def_zone]-20) // If hit roll is high or the firer wasn't aiming at this mob, we still hit but now we might hit the wrong body part
+ // Wasn't the clicked target
+ if(original != L)
def_zone = rand_zone()
+
+ // Xenos get a RNG limb miss chance regardless of being clicked target or not, see below
+ else if(isxeno(L) && hit_roll > hit_chance - 20)
+ def_zone = rand_zone()
+
+ // Other targets do the same roll with penalty - a near hit will hit but redirected to another limb
+ else if(!isxeno(L) && hit_roll > hit_chance - 20 - base_miss_chance[def_zone])
+ def_zone = rand_zone()
+
else
+ direct_hit = TRUE
SEND_SIGNAL(firer, COMSIG_BULLET_DIRECT_HIT, L)
- hit_chance -= base_miss_chance[def_zone] // Reduce accuracy based on spot.
+
+ // At present, Xenos have no inherent effects or localized damage stemming from limb targeting
+ // Therefore we exempt the shooter from direct hit accuracy penalties as well,
+ // simply to avoid them from resetting target to chest every time they want to shoot a xeno
+
+ if(!direct_hit || !isxeno(L)) // For normal people or direct hits we apply the limb accuracy penalty
+ hit_chance -= base_miss_chance[def_zone]
+ // else for direct hits on xenos, we skip it, pretending it's a chest shot with zero penalty
#if DEBUG_HIT_CHANCE
to_world(SPAN_DEBUG("([L]) Hit chance: [hit_chance] | Roll: [hit_roll]"))
@@ -1025,7 +1044,8 @@
bullet_message(P) //Message us about the bullet, since damage was inflicted.
-
+ if(mob_flags & AI_CONTROLLED)
+ handle_ai_shot(P)
if(SEND_SIGNAL(src, COMSIG_XENO_BULLET_ACT, damage_result, ammo_flags, P) & COMPONENT_CANCEL_BULLET_ACT)
return
diff --git a/code/modules/reagents/chemistry_machinery/autodispenser.dm b/code/modules/reagents/chemistry_machinery/autodispenser.dm
index a06042aac7..eed96564da 100644
--- a/code/modules/reagents/chemistry_machinery/autodispenser.dm
+++ b/code/modules/reagents/chemistry_machinery/autodispenser.dm
@@ -346,8 +346,7 @@
C.reagents.trans_to(container, amount)
//We don't care about keeping empty bottles stored
if(C.reagents.total_volume <= 0 && istypestrict(C,/obj/item/reagent_container/glass/bottle))
- linked_storage.item_quants[C.name]--
- qdel(C) //Might want to connect it to a disposal system later instead
+ linked_storage.delete_contents(C)
if(stage_missing)
amount = stage_missing
diff --git a/code/modules/reagents/chemistry_machinery/chem_master.dm b/code/modules/reagents/chemistry_machinery/chem_master.dm
index 2523a9e106..08547dd085 100644
--- a/code/modules/reagents/chemistry_machinery/chem_master.dm
+++ b/code/modules/reagents/chemistry_machinery/chem_master.dm
@@ -237,8 +237,6 @@
while (count--)
var/obj/item/reagent_container/pill/P = new/obj/item/reagent_container/pill(loc)
P.pill_desc = "A custom pill."
- P.pixel_x = rand(-7, 7) //random position
- P.pixel_y = rand(-7, 7)
P.icon_state = "pill"+pillsprite
reagents.trans_to(P,amount_per_pill)
if(loaded_pill_bottle)
@@ -271,8 +269,6 @@
P.name = "[name] vial"
reagents.trans_to(P, 30)
- P.pixel_x = rand(-7, 7) //random position
- P.pixel_y = rand(-7, 7)
P.update_icon()
if(href_list["store"])
diff --git a/code/modules/reagents/chemistry_properties/prop_positive.dm b/code/modules/reagents/chemistry_properties/prop_positive.dm
index 7f476cecf2..971051e9bf 100644
--- a/code/modules/reagents/chemistry_properties/prop_positive.dm
+++ b/code/modules/reagents/chemistry_properties/prop_positive.dm
@@ -548,7 +548,7 @@
rarity = PROPERTY_RARE
category = PROPERTY_TYPE_REACTANT
value = 3
- max_level = 1
+ COOLDOWN_DECLARE(ghost_notif)
/datum/chem_property/positive/defibrillating/on_delete(mob/living/M)
..()
@@ -574,19 +574,33 @@
/datum/chem_property/positive/defibrillating/process_dead(mob/living/M, potency = 1, delta_time)
if(!ishuman(M))
return
- var/mob/living/carbon/human/H = M
- H.apply_damage(-H.getOxyLoss(), OXY)
- if(H.check_tod() && H.is_revivable() && H.health > HEALTH_THRESHOLD_DEAD)
- to_chat(H, SPAN_NOTICE("You feel your heart struggling as you suddenly feel a spark, making it desperately try to continue pumping."))
- playsound_client(H.client, 'sound/effects/Heart Beat Short.ogg', 35)
- addtimer(CALLBACK(H, TYPE_PROC_REF(/mob/living/carbon/human, handle_revive)), 50, TIMER_UNIQUE)
- else if (potency > POTENCY_MAX_TIER_1 && H.check_tod() && H.is_revivable() && H.health < HEALTH_THRESHOLD_DEAD) //Will heal if level is 7 or greater
- to_chat(H, SPAN_NOTICE("You feel a faint spark in your chest."))
- H.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, BRUTE)
- H.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, BURN)
- H.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, TOX)
- H.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, CLONE)
- H.apply_damage(-H.getOxyLoss(), OXY)
+ var/mob/living/carbon/human/dead = M
+ var/revivable = dead.check_tod() && dead.is_revivable()
+ if(revivable && (dead.health > HEALTH_THRESHOLD_DEAD))
+ addtimer(CALLBACK(dead, TYPE_PROC_REF(/mob/living/carbon/human, handle_revive)), 5 SECONDS)
+ to_chat(dead, SPAN_NOTICE("You feel your heart struggling as you suddenly feel a spark, making it desperately try to continue pumping."))
+ playsound_client(dead.client, 'sound/effects/heart_beat_short.ogg', 35)
+ else if ((potency >= 1) && revivable && dead.health <= HEALTH_THRESHOLD_DEAD) //heals on all level above 1. This is however, minimal.
+ to_chat(dead, SPAN_NOTICE("You feel a faint spark in your chest."))
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, BRUTE)
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, BURN)
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, TOX)
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, CLONE)
+ dead.apply_damage(-dead.getOxyLoss(), OXY)
+ if(potency > CREATE_MAX_TIER_1) //heal more if higher levels
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, BRUTE)
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, BURN)
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, TOX)
+ dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, CLONE)
+ if(dead.health < HEALTH_THRESHOLD_DEAD)
+ return
+ if(!COOLDOWN_FINISHED(src, ghost_notif))
+ return
+ var/mob/dead/observer/ghost = dead.get_ghost()
+ if(ghost?.client)
+ COOLDOWN_START(src, ghost_notif, 30 SECONDS)
+ playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg')
+ to_chat(ghost, SPAN_BOLDNOTICE("Your heart is struggling to pump! There is a chance you might get up!(Verbs -> Ghost -> Re-enter corpse, or click here!)"))
return TRUE
/datum/chem_property/positive/hyperdensificating
diff --git a/code/modules/reagents/chemistry_properties/prop_special.dm b/code/modules/reagents/chemistry_properties/prop_special.dm
index 640e184263..8dbc1bbe3d 100644
--- a/code/modules/reagents/chemistry_properties/prop_special.dm
+++ b/code/modules/reagents/chemistry_properties/prop_special.dm
@@ -96,7 +96,7 @@
H.contract_disease(new /datum/disease/xeno_transformation(0),1) //This is the real reason PMCs are being sent to retrieve it.
/datum/chem_property/special/DNA_Disintegrating/trigger()
- SSticker.mode.get_specific_call("Weyland-Yutani Goon (Chemical Investigation Squad)", TRUE, FALSE, FALSE, holder.name, TRUE)
+ SSticker.mode.get_specific_call("Weyland-Yutani Goon (Chemical Investigation Squad)", TRUE, FALSE, holder.name)
chemical_data.update_credits(10)
message_admins("The research department has discovered DNA_Disintegrating in [holder.name] adding 10 bonus tech points.")
var/datum/techtree/tree = GET_TREE(TREE_MARINE)
@@ -369,3 +369,20 @@
/datum/chem_property/special/firepenetrating/update_reagent()
holder.fire_penetrating = TRUE
..()
+
+/datum/chem_property/special/revitalizing
+ name = PROPERTY_REVITALIZING
+ code = "REV"
+ description = "For a period of time, revitalizes the main systems of the body and prevents unconciousness."
+ rarity = PROPERTY_ADMIN
+ category = PROPERTY_TYPE_STIMULANT
+ value = 666
+
+/datum/chem_property/special/revitalizing/reagent_added(mob/living/M)
+ if(!ishuman(M))
+ return
+ M.status_flags &= ~CANKNOCKOUT
+ M.knocked_out = 0
+
+/datum/chem_property/special/revitalizing/on_delete(mob/living/M)
+ M.status_flags |= CANKNOCKOUT
diff --git a/code/modules/reagents/chemistry_reactions/medical.dm b/code/modules/reagents/chemistry_reactions/medical.dm
index 2e38117134..72a491d779 100644
--- a/code/modules/reagents/chemistry_reactions/medical.dm
+++ b/code/modules/reagents/chemistry_reactions/medical.dm
@@ -14,6 +14,13 @@
required_reagents = list("carbon" = 1, "nitrogen" = 1, "oxygen" = 1)
result_amount = 2
+/datum/chemical_reaction/adrenaline_concentrated
+ name = "Epinephrine (concentrated)"
+ id = "adrenaline_concentrated"
+ result = "adrenaline_concentrated"
+ required_reagents = list("carbon" = 1, "nitrogen" = 1, "oxygen" = 1, "phoron" = 3)
+ result_amount = 1
+
/datum/chemical_reaction/alkysine
name = "Alkysine"
id = "alkysine"
diff --git a/code/modules/reagents/chemistry_reagents/drink.dm b/code/modules/reagents/chemistry_reagents/drink.dm
index 468243a0cc..3bd7336c32 100644
--- a/code/modules/reagents/chemistry_reagents/drink.dm
+++ b/code/modules/reagents/chemistry_reagents/drink.dm
@@ -85,13 +85,13 @@
/datum/reagent/drink/carrotjuice/on_mob_life(mob/living/M)
. = ..()
- if(!.) return
+ if(!.)
+ return
M.ReduceEyeBlur(1)
M.ReduceEyeBlind(1)
- if(!data) data = 1
+ if(!data)
+ data = 1
switch(data)
- if(1 to 20)
- //nothing
if(21 to INFINITY)
if(prob(data-10))
M.disabilities &= ~NEARSIGHTED
diff --git a/code/modules/reagents/chemistry_reagents/medical.dm b/code/modules/reagents/chemistry_reagents/medical.dm
index f69d1b952c..01269a0d85 100644
--- a/code/modules/reagents/chemistry_reagents/medical.dm
+++ b/code/modules/reagents/chemistry_reagents/medical.dm
@@ -275,7 +275,7 @@
id = "adrenaline"
description = "A natural muscle and heart stimulant. Useful for restarting the heart. Overdosing may stress the heart and cause tissue damage."
reagent_state = LIQUID
- color = "FFE703" // Yellow-ish
+ color = "#FFE703" // Yellow-ish
overdose = LOWM_REAGENTS_OVERDOSE
overdose_critical = LOWM_REAGENTS_OVERDOSE_CRITICAL
custom_metabolism = AMOUNT_PER_TIME(1, 5 SECONDS)
@@ -283,6 +283,19 @@
properties = list(PROPERTY_PAINKILLING = 1.5, PROPERTY_ELECTROGENETIC = 4, PROPERTY_INTRAVENOUS = 1)
flags = REAGENT_TYPE_MEDICAL | REAGENT_SCANNABLE
+/datum/reagent/medical/adrenaline_concentrated
+ name = "Epinephrine (concentrated)"
+ id = "adrenaline_concentrated"
+ description = "A natural muscle and heart stimulant that is in a high concerntration. Useful for restarting the heart and preventing unconciousness but in this concentrated form it will cause minor suffocation. Overdosing may stress the heart and cause tissue damage."
+ reagent_state = LIQUID
+ color = "#FFE702" // Yellow-ish
+ overdose = LOWM_REAGENTS_OVERDOSE
+ overdose_critical = LOWM_REAGENTS_OVERDOSE_CRITICAL
+ custom_metabolism = AMOUNT_PER_TIME(1, 10 SECONDS)
+ chemclass = CHEM_CLASS_COMMON
+ properties = list(PROPERTY_PAINKILLING = 1.5, PROPERTY_ELECTROGENETIC = 4, PROPERTY_REVITALIZING = 1, PROPERTY_HYPOXEMIC = 5, PROPERTY_INTRAVENOUS = 1)
+ flags = REAGENT_TYPE_MEDICAL | REAGENT_SCANNABLE
+
/datum/reagent/medical/ultrazine
name = "Ultrazine"
id = "ultrazine"
diff --git a/code/modules/reagents/chemistry_reagents/toxin.dm b/code/modules/reagents/chemistry_reagents/toxin.dm
index 458424a5db..6ffd14ea8a 100644
--- a/code/modules/reagents/chemistry_reagents/toxin.dm
+++ b/code/modules/reagents/chemistry_reagents/toxin.dm
@@ -279,4 +279,4 @@
color = "#669900"
reagent_state = LIQUID
chemclass = CHEM_CLASS_NONE
- properties = list(PROPERTY_CORROSIVE = 2, PROPERTY_TOXIC = 1)
+ properties = list(PROPERTY_CORROSIVE = 2, PROPERTY_TOXIC = 1, PROPERTY_CROSSMETABOLIZING = 3)
diff --git a/code/modules/recycling/disposal-construction.dm b/code/modules/recycling/disposal-construction.dm
index 98d4c9348b..a4ff0ec018 100644
--- a/code/modules/recycling/disposal-construction.dm
+++ b/code/modules/recycling/disposal-construction.dm
@@ -9,6 +9,7 @@
icon_state = "conpipe-s"
anchored = FALSE
density = FALSE
+ unslashable = TRUE
matter = list("metal" = 1850)
level = 2
var/ptype = 0
diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm
index 2c7401ac27..1baab6b617 100644
--- a/code/modules/recycling/disposal.dm
+++ b/code/modules/recycling/disposal.dm
@@ -463,6 +463,7 @@
///Virtual disposal object, travels through pipes in lieu of actual items
///Contents will be items flushed by the disposal, this allows the gas flushed to be tracked
/obj/structure/disposalholder
+ unslashable = TRUE
invisibility = 101
var/active = 0 //True if the holder is moving, otherwise inactive
dir = 0
@@ -618,6 +619,7 @@
desc = "An underfloor disposal pipe."
anchored = TRUE
density = FALSE
+ unslashable = TRUE
level = 1 //Underfloor only
var/dpdir = 0 //Bitmask of pipe directions
diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm
index e61357188a..3168bd8533 100644
--- a/code/modules/recycling/sortingmachinery.dm
+++ b/code/modules/recycling/sortingmachinery.dm
@@ -12,6 +12,7 @@
var/label_x
var/tag_x
anchored = FALSE
+ unslashable = TRUE
/obj/structure/bigDelivery/attack_hand(mob/user as mob)
if(wrapped) //sometimes items can disappear. For example, bombs. --rastaf0
diff --git a/code/modules/shuttle/computers/trijent_elevator_control.dm b/code/modules/shuttle/computers/trijent_elevator_control.dm
index 290d0c94b3..41c3456a1f 100644
--- a/code/modules/shuttle/computers/trijent_elevator_control.dm
+++ b/code/modules/shuttle/computers/trijent_elevator_control.dm
@@ -1,8 +1,6 @@
/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call
name = "\improper Elevator Call"
desc = "Control panel for the elevator"
- icon = 'icons/obj/structures/machinery/computer.dmi'
- icon_state = "elevator_screen"
shuttleId = MOBILE_TRIJENT_ELEVATOR
is_call = TRUE
var/dockId
@@ -10,6 +8,13 @@
/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/get_landing_zones()
return list(SSshuttle.getDock(dockId))
+
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/occupied
+ dockId = STAT_TRIJENT_OCCUPIED
+
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/empty
+ dockId = STAT_TRIJENT_EMPTY
+
/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1
dockId = STAT_TRIJENT_LZ1
@@ -38,8 +43,15 @@
/obj/structure/machinery/computer/shuttle/elevator_controller/proc/get_landing_zones()
. = list()
+ var/obj/docking_port/mobile/trijent_elevator/shuttle = SSshuttle.getShuttle(shuttleId)
+
for(var/obj/docking_port/stationary/trijent_elevator/elev in SSshuttle.stationary)
- . += list(elev)
+ if(!shuttle.elevator_network)
+ . += list(elev)
+ continue
+ if(shuttle.elevator_network == elev.elevator_network)
+ . += list(elev)
+ continue
/obj/structure/machinery/computer/shuttle/elevator_controller/tgui_interact(mob/user, datum/tgui/ui)
ui = SStgui.try_update_ui(user, src, ui)
diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm
index 983fffeb26..7bbdb214d3 100644
--- a/code/modules/shuttle/shuttle.dm
+++ b/code/modules/shuttle/shuttle.dm
@@ -268,9 +268,7 @@
if(!roundstart_template)
CRASH("json_key:[json_key] value \[[sid]\] resulted in a null shuttle template for [src]")
else if(roundstart_template) // passed a PATH
- var/sid = "[initial(roundstart_template.shuttle_id)]"
-
- roundstart_template = SSmapping.shuttle_templates[sid]
+ roundstart_template = SSmapping.all_shuttle_templates[roundstart_template]
if(!roundstart_template)
CRASH("Invalid path ([roundstart_template]) passed to docking port.")
@@ -433,7 +431,7 @@
// Called after the shuttle is loaded from template
/obj/docking_port/mobile/proc/linkup(datum/map_template/shuttle/template, obj/docking_port/stationary/dock)
var/list/static/shuttle_id = list()
- var/idnum = ++shuttle_id[template]
+ var/idnum = ++shuttle_id[id]
if(idnum > 1)
if(id == initial(id))
id = "[id][idnum]"
diff --git a/code/modules/shuttle/shuttles.md b/code/modules/shuttle/shuttles.md
index 373e18b449..f800303414 100644
--- a/code/modules/shuttle/shuttles.md
+++ b/code/modules/shuttle/shuttles.md
@@ -16,3 +16,28 @@ Shuttle map templates are used to define what the shuttle should look like.
When defining the shuttle dimensions, define the height/width as if it was orienting north. The subsystem will properly line everything up, this allows for stationary docks to be in different orientations to their defined map template.
A shuttle has a height, width, dheight and dwidth. The height and width is the size of the shuttle, with respect to its direction. If the template direction is North/South then width is your X coordinate and height is your Y. If the template direction is East/West then width is your Y direction and height is your X. On stationary docking ports, you can specify dwidth and dheight (auto generated for mobile), these are offsets for how your shuttle should land on the site. When a mobile port lands on a stationary port it wants to place the bottom left of the shuttle turfs on the stationary port. The dwidth/dheight allows you to offset this.
+
+
+# Generic Elevator Shuttle
+
+The elevator used on Trijent (DesertDam) can be used in any map and multiple can exist on one map.
+
+Do not modify the trident shuttle map. You can code in elevators from the following two docking ports (where the elevator can go):
+
+- /obj/docking_port/stationary/trijent_elevator/occupied
+- /obj/docking_port/stationary/trijent_elevator/empty
+
+An occupied stationary port will start the map with an elevator and an empty one will not.
+All docking ports are, by default, linked together. One elevator can go to all docking ports.
+To limit access between docking ports you can use tags.
+
+To setup an elevator:
+- place the docking port where you want the elevator to sit
+- give the docking port instance a unique ID
+- give the docking port instance a unique Name
+- make sure the door direction is correct west/east
+- give the docking port shuttle_area the area name for where it sits
+- if you want to build a docking port 'network' then change the roudnstart_template to a subclass
+- if you want to assign a docking port to a 'network' then give it a value in "tag"
+
+If things are unclear, look at trident. It has two elevator networks.
diff --git a/code/modules/shuttle/shuttles/trijent_elevator.dm b/code/modules/shuttle/shuttles/trijent_elevator.dm
index 86ad6f7ef2..457c150212 100644
--- a/code/modules/shuttle/shuttles/trijent_elevator.dm
+++ b/code/modules/shuttle/shuttles/trijent_elevator.dm
@@ -19,6 +19,7 @@
movement_force = list("KNOCKDOWN" = 0, "THROW" = 0)
var/datum/door_controller/aggregate/door_control
+ var/elevator_network
/obj/docking_port/mobile/trijent_elevator/Initialize(mapload, ...)
. = ..()
@@ -36,6 +37,12 @@
. = ..()
door_control.control_doors("force-lock-launch", "all", force=TRUE)
+/obj/docking_port/mobile/trijent_elevator/linkup(datum/map_template/shuttle/template, obj/docking_port/stationary/dock)
+ ..()
+ var/datum/map_template/shuttle/trijent_elevator/elev = template
+ elevator_network = elev.elevator_network
+ log_debug("Adding network [elev.elevator_network] to [id]")
+
/obj/docking_port/stationary/trijent_elevator
dir=NORTH
width=7
@@ -43,6 +50,7 @@
// shutters to clear the area
var/airlock_area
var/airlock_exit
+ var/elevator_network
/obj/docking_port/stationary/trijent_elevator/proc/get_doors()
. = list()
@@ -74,6 +82,17 @@
door_control.control_doors("force-lock-launch")
qdel(door_control)
+/obj/docking_port/stationary/trijent_elevator/occupied
+ name = "occupied"
+ id = STAT_TRIJENT_OCCUPIED
+ airlock_exit = "west"
+ roundstart_template = /datum/map_template/shuttle/trijent_elevator
+
+/obj/docking_port/stationary/trijent_elevator/empty
+ name = "empty"
+ id = STAT_TRIJENT_EMPTY
+ airlock_exit = "west"
+
/obj/docking_port/stationary/trijent_elevator/lz1
name="Lz1 Elevator"
id=STAT_TRIJENT_LZ1
@@ -98,7 +117,3 @@
id=STAT_TRIJENT_OMEGA
airlock_area=/area/shuttle/trijent_shuttle/omega
airlock_exit="east"
-
-/datum/map_template/shuttle/trijent_elevator
- name = "Trijent Elevator"
- shuttle_id = MOBILE_TRIJENT_ELEVATOR
diff --git a/code/modules/tents/equipment.dm b/code/modules/tents/equipment.dm
index 0d47c7e3ce..bf9a76fc2d 100644
--- a/code/modules/tents/equipment.dm
+++ b/code/modules/tents/equipment.dm
@@ -44,9 +44,10 @@
return ..()
/// Telephone
-/obj/structure/transmitter/tent
+/obj/structure/phone_base/tent
layer = INTERIOR_WALLMOUNT_LAYER
-/obj/structure/transmitter/tent/Initialize(mapload, ...)
+
+/obj/structure/phone_base/tent/Initialize(mapload, ...)
AddComponent(/datum/component/tent_supported_object)
return ..()
diff --git a/code/modules/tgs/core/core.dm b/code/modules/tgs/core/core.dm
index 41a0473394..b9a9f27a28 100644
--- a/code/modules/tgs/core/core.dm
+++ b/code/modules/tgs/core/core.dm
@@ -153,4 +153,9 @@
/world/TgsSecurityLevel()
var/datum/tgs_api/api = TGS_READ_GLOBAL(tgs)
if(api)
- api.SecurityLevel()
+ return api.SecurityLevel()
+
+/world/TgsVisibility()
+ var/datum/tgs_api/api = TGS_READ_GLOBAL(tgs)
+ if(api)
+ return api.Visibility()
diff --git a/code/modules/tgs/core/datum.dm b/code/modules/tgs/core/datum.dm
index 68b0330fe8..de420a2a32 100644
--- a/code/modules/tgs/core/datum.dm
+++ b/code/modules/tgs/core/datum.dm
@@ -11,6 +11,10 @@ TGS_DEFINE_AND_SET_GLOBAL(tgs, null)
src.event_handler = event_handler
src.version = version
+/datum/tgs_api/proc/TerminateWorld()
+ del(world)
+ sleep(1) // https://www.byond.com/forum/post/2894866
+
/datum/tgs_api/latest
parent_type = /datum/tgs_api/v5
@@ -57,3 +61,6 @@ TGS_PROTECT_DATUM(/datum/tgs_api)
/datum/tgs_api/proc/SecurityLevel()
return TGS_UNIMPLEMENTED
+
+/datum/tgs_api/proc/Visibility()
+ return TGS_UNIMPLEMENTED
diff --git a/code/modules/tgs/v4/api.dm b/code/modules/tgs/v4/api.dm
index b9a75c4abb..945e2e4117 100644
--- a/code/modules/tgs/v4/api.dm
+++ b/code/modules/tgs/v4/api.dm
@@ -73,7 +73,7 @@
if(cached_json["apiValidateOnly"])
TGS_INFO_LOG("Validating API and exiting...")
Export(TGS4_COMM_VALIDATE, list(TGS4_PARAMETER_DATA = "[minimum_required_security_level]"))
- del(world)
+ TerminateWorld()
security_level = cached_json["securityLevel"]
chat_channels_json_path = cached_json["chatChannelsJson"]
@@ -188,7 +188,7 @@
requesting_new_port = TRUE
if(!world.OpenPort(0)) //open any port
TGS_ERROR_LOG("Unable to open random port to retrieve new port![TGS4_PORT_CRITFAIL_MESSAGE]")
- del(world)
+ TerminateWorld()
//request a new port
export_lock = FALSE
@@ -196,16 +196,16 @@
if(!new_port_json)
TGS_ERROR_LOG("No new port response from server![TGS4_PORT_CRITFAIL_MESSAGE]")
- del(world)
+ TerminateWorld()
var/new_port = new_port_json[TGS4_PARAMETER_DATA]
if(!isnum(new_port) || new_port <= 0)
TGS_ERROR_LOG("Malformed new port json ([json_encode(new_port_json)])![TGS4_PORT_CRITFAIL_MESSAGE]")
- del(world)
+ TerminateWorld()
if(new_port != world.port && !world.OpenPort(new_port))
TGS_ERROR_LOG("Unable to open port [new_port]![TGS4_PORT_CRITFAIL_MESSAGE]")
- del(world)
+ TerminateWorld()
requesting_new_port = FALSE
while(export_lock)
diff --git a/code/modules/tgs/v5/__interop_version.dm b/code/modules/tgs/v5/__interop_version.dm
index 5d3d491a73..1b52b31d6a 100644
--- a/code/modules/tgs/v5/__interop_version.dm
+++ b/code/modules/tgs/v5/__interop_version.dm
@@ -1 +1 @@
-"5.6.1"
+"5.6.2"
diff --git a/code/modules/tgs/v5/_defines.dm b/code/modules/tgs/v5/_defines.dm
index f973338daa..bdcd4e4dd5 100644
--- a/code/modules/tgs/v5/_defines.dm
+++ b/code/modules/tgs/v5/_defines.dm
@@ -48,6 +48,7 @@
#define DMAPI5_RUNTIME_INFORMATION_REVISION "revision"
#define DMAPI5_RUNTIME_INFORMATION_TEST_MERGES "testMerges"
#define DMAPI5_RUNTIME_INFORMATION_SECURITY_LEVEL "securityLevel"
+#define DMAPI5_RUNTIME_INFORMATION_VISIBILITY "visibility"
#define DMAPI5_CHAT_UPDATE_CHANNELS "channels"
diff --git a/code/modules/tgs/v5/api.dm b/code/modules/tgs/v5/api.dm
index 34cc43f876..7226f29bba 100644
--- a/code/modules/tgs/v5/api.dm
+++ b/code/modules/tgs/v5/api.dm
@@ -4,6 +4,7 @@
var/instance_name
var/security_level
+ var/visibility
var/reboot_mode = TGS_REBOOT_MODE_NORMAL
@@ -50,10 +51,11 @@
if(runtime_information[DMAPI5_RUNTIME_INFORMATION_API_VALIDATE_ONLY])
TGS_INFO_LOG("DMAPI validation, exiting...")
- del(world)
+ TerminateWorld()
version = new /datum/tgs_version(runtime_information[DMAPI5_RUNTIME_INFORMATION_SERVER_VERSION])
security_level = runtime_information[DMAPI5_RUNTIME_INFORMATION_SECURITY_LEVEL]
+ visibility = runtime_information[DMAPI5_RUNTIME_INFORMATION_VISIBILITY]
instance_name = runtime_information[DMAPI5_RUNTIME_INFORMATION_INSTANCE_NAME]
var/list/revisionData = runtime_information[DMAPI5_RUNTIME_INFORMATION_REVISION]
@@ -252,3 +254,7 @@
/datum/tgs_api/v5/SecurityLevel()
RequireInitialBridgeResponse()
return security_level
+
+/datum/tgs_api/v5/Visibility()
+ RequireInitialBridgeResponse()
+ return visibility
diff --git a/code/modules/tgs/v5/undefs.dm b/code/modules/tgs/v5/undefs.dm
index c679737dfc..f163adaaaf 100644
--- a/code/modules/tgs/v5/undefs.dm
+++ b/code/modules/tgs/v5/undefs.dm
@@ -48,6 +48,7 @@
#undef DMAPI5_RUNTIME_INFORMATION_REVISION
#undef DMAPI5_RUNTIME_INFORMATION_TEST_MERGES
#undef DMAPI5_RUNTIME_INFORMATION_SECURITY_LEVEL
+#undef DMAPI5_RUNTIME_INFORMATION_VISIBILITY
#undef DMAPI5_CHAT_UPDATE_CHANNELS
diff --git a/code/modules/vehicles/apc/apc.dm b/code/modules/vehicles/apc/apc.dm
index d71db37074..f7f5f32105 100644
--- a/code/modules/vehicles/apc/apc.dm
+++ b/code/modules/vehicles/apc/apc.dm
@@ -34,6 +34,8 @@ GLOBAL_LIST_EMPTY(command_apc_list)
movement_sound = 'sound/vehicles/tank_driving.ogg'
+ light_range = 4
+
var/gunner_view_buff = 10
hardpoints_allowed = list(
@@ -59,8 +61,6 @@ GLOBAL_LIST_EMPTY(command_apc_list)
vehicle_flags = VEHICLE_CLASS_LIGHT
- mob_size_required_to_hit = MOB_SIZE_XENO
-
dmg_multipliers = list(
"all" = 1,
"acid" = 1.6,
@@ -108,6 +108,8 @@ GLOBAL_LIST_EMPTY(command_apc_list)
add_verb(M.client, list(
/obj/vehicle/multitile/proc/toggle_door_lock,
/obj/vehicle/multitile/proc/activate_horn,
+ /obj/vehicle/multitile/proc/switch_hardpoint,
+ /obj/vehicle/multitile/proc/cycle_hardpoint,
/obj/vehicle/multitile/proc/name_vehicle
))
else if(seat == VEHICLE_GUNNER)
@@ -135,6 +137,8 @@ GLOBAL_LIST_EMPTY(command_apc_list)
remove_verb(M.client, list(
/obj/vehicle/multitile/proc/toggle_door_lock,
/obj/vehicle/multitile/proc/activate_horn,
+ /obj/vehicle/multitile/proc/switch_hardpoint,
+ /obj/vehicle/multitile/proc/cycle_hardpoint,
/obj/vehicle/multitile/proc/name_vehicle,
))
else if(seat == VEHICLE_GUNNER)
diff --git a/code/modules/vehicles/apc/apc_command.dm b/code/modules/vehicles/apc/apc_command.dm
index c5bd559283..1e9fba7371 100644
--- a/code/modules/vehicles/apc/apc_command.dm
+++ b/code/modules/vehicles/apc/apc_command.dm
@@ -7,7 +7,7 @@
interior_map = /datum/map_template/interior/apc_command
- passengers_slots = 8
+ passengers_slots = 15
var/sensor_radius = 45 //45 tiles radius
@@ -98,6 +98,8 @@
add_verb(M.client, list(
/obj/vehicle/multitile/proc/toggle_door_lock,
/obj/vehicle/multitile/proc/activate_horn,
+ /obj/vehicle/multitile/proc/switch_hardpoint,
+ /obj/vehicle/multitile/proc/cycle_hardpoint,
))
else if(seat == VEHICLE_GUNNER)
add_verb(M.client, list(
@@ -119,6 +121,8 @@
remove_verb(M.client, list(
/obj/vehicle/multitile/proc/toggle_door_lock,
/obj/vehicle/multitile/proc/activate_horn,
+ /obj/vehicle/multitile/proc/switch_hardpoint,
+ /obj/vehicle/multitile/proc/cycle_hardpoint,
))
else if(seat == VEHICLE_GUNNER)
remove_verb(M.client, list(
diff --git a/code/modules/vehicles/apc/apc_medical.dm b/code/modules/vehicles/apc/apc_medical.dm
index f8809bedaa..c3b3a16bd8 100644
--- a/code/modules/vehicles/apc/apc_medical.dm
+++ b/code/modules/vehicles/apc/apc_medical.dm
@@ -8,7 +8,7 @@
interior_map = /datum/map_template/interior/apc_med
- passengers_slots = 8
+ passengers_slots = 15
//MED APC can store additional 6 dead revivable bodies for the triage
//but interior won't allow more revivable dead if passengers_taken_slots >= passengers_slots + revivable_dead_slots
//to prevent infinitely growing the marine force inside of the vehicle
@@ -54,6 +54,8 @@
add_verb(M.client, list(
/obj/vehicle/multitile/proc/toggle_door_lock,
/obj/vehicle/multitile/proc/activate_horn,
+ /obj/vehicle/multitile/proc/switch_hardpoint,
+ /obj/vehicle/multitile/proc/cycle_hardpoint,
))
else if(seat == VEHICLE_GUNNER)
add_verb(M.client, list(
@@ -75,6 +77,8 @@
remove_verb(M.client, list(
/obj/vehicle/multitile/proc/toggle_door_lock,
/obj/vehicle/multitile/proc/activate_horn,
+ /obj/vehicle/multitile/proc/switch_hardpoint,
+ /obj/vehicle/multitile/proc/cycle_hardpoint,
))
else if(seat == VEHICLE_GUNNER)
remove_verb(M.client, list(
diff --git a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm
index 763bfb6984..d33fc1d628 100644
--- a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm
+++ b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm
@@ -19,6 +19,8 @@
origins = list(0, -2)
+ allowed_seat = VEHICLE_DRIVER
+
ammo = new /obj/item/ammo_magazine/hardpoint/boyars_dualcannon
max_clips = 2
diff --git a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm
index 4d454bed12..c7600059d9 100644
--- a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm
+++ b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm
@@ -18,6 +18,8 @@
origins = list(0, -2)
+ allowed_seat = VEHICLE_DRIVER
+
ammo = new /obj/item/ammo_magazine/hardpoint/m56_cupola/frontal_cannon
max_clips = 1
diff --git a/code/modules/vehicles/hardpoints/support/flare.dm b/code/modules/vehicles/hardpoints/support/flare.dm
index 00dcd3ac18..2cee40064f 100644
--- a/code/modules/vehicles/hardpoints/support/flare.dm
+++ b/code/modules/vehicles/hardpoints/support/flare.dm
@@ -19,6 +19,8 @@
origins = list(0, -2)
+ allowed_seat = VEHICLE_DRIVER
+
ammo = new /obj/item/ammo_magazine/hardpoint/flare_launcher
max_clips = 3
diff --git a/code/modules/vehicles/interior/interactable/vendors.dm b/code/modules/vehicles/interior/interactable/vendors.dm
index 6d98bc85e4..f5aef4f430 100644
--- a/code/modules/vehicles/interior/interactable/vendors.dm
+++ b/code/modules/vehicles/interior/interactable/vendors.dm
@@ -77,7 +77,6 @@
list("AUTOINJECTORS", -1, null, null),
list("Autoinjector (Bicaridine)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR),
list("Autoinjector (Dexalin+)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR),
- list("Autoinjector (Epinephrine)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/adrenaline, VENDOR_ITEM_REGULAR),
list("Autoinjector (Inaprovaline)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR),
list("Autoinjector (Kelotane)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR),
list("Autoinjector (Oxycodone)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR),
diff --git a/code/modules/vehicles/interior/interior.dm b/code/modules/vehicles/interior/interior.dm
index 046b42495a..f2afcd5ae5 100644
--- a/code/modules/vehicles/interior/interior.dm
+++ b/code/modules/vehicles/interior/interior.dm
@@ -318,7 +318,7 @@
var/turf/min = reservation.bottom_left_coords
var/turf/max = reservation.top_right_coords
- return list(Floor(min[1] + (max[1] - min[1])), Floor(min[2] + (max[2] - min[2])), min[3])
+ return list(Floor(min[1] + (max[1] - min[1])/2), Floor(min[2] + (max[2] - min[2])/2), min[3])
/datum/interior/proc/get_middle_turf()
var/list/turf/bounds = get_bound_turfs()
diff --git a/code/modules/vehicles/interior/interior_landmarks.dm b/code/modules/vehicles/interior/interior_landmarks.dm
index 90284682d2..eb62e50243 100644
--- a/code/modules/vehicles/interior/interior_landmarks.dm
+++ b/code/modules/vehicles/interior/interior_landmarks.dm
@@ -216,18 +216,18 @@
color = "yellow"
/obj/effect/landmark/interior/spawn/telephone/on_load(datum/interior/I)
- var/obj/structure/transmitter/Phone = new(loc)
-
- Phone.icon = icon
- Phone.icon_state = icon_state
- Phone.layer = layer
- Phone.setDir(dir)
- Phone.alpha = alpha
- Phone.update_icon()
- Phone.pixel_x = pixel_x
- Phone.pixel_y = pixel_y
- Phone.phone_category = "Vehicles"
- Phone.phone_id = I.exterior.name
+ var/obj/structure/phone_base/phone = new(loc)
+
+ phone.icon = icon
+ phone.icon_state = icon_state
+ phone.layer = layer
+ phone.setDir(dir)
+ phone.alpha = alpha
+ phone.update_icon()
+ phone.pixel_x = pixel_x
+ phone.pixel_y = pixel_y
+ phone.phone_category = "Vehicles"
+ phone.phone_id = I.exterior.name
qdel(src)
diff --git a/code/modules/vehicles/multitile/multitile.dm b/code/modules/vehicles/multitile/multitile.dm
index 9e4d2c9d29..148af24e0d 100644
--- a/code/modules/vehicles/multitile/multitile.dm
+++ b/code/modules/vehicles/multitile/multitile.dm
@@ -21,11 +21,13 @@
can_buckle = FALSE
+ //Vehicle self-illumination
light_system = MOVABLE_LIGHT
light_range = 5
+ light_power = 2
- var/atom/movable/vehicle_light_holder/lighting_holder
-
+ //Vehicle headlights
+ var/atom/movable/vehicle_light/light_holder
var/vehicle_light_range = 5
var/vehicle_light_power = 2
@@ -176,15 +178,13 @@
rotate_bounds(angle_to_turn)
if(bound_width > world.icon_size || bound_height > world.icon_size)
- lighting_holder = new(src)
- lighting_holder.set_light_range(vehicle_light_range)
- lighting_holder.set_light_power(vehicle_light_power)
- lighting_holder.set_light_on(vehicle_light_range || vehicle_light_power)
- else if(light_range)
- set_light_on(TRUE)
+ light_holder = new(src)
+ light_holder.set_light_flags(LIGHT_ATTACHED)
+ light_holder.set_light_range(vehicle_light_range)
+ light_holder.set_light_power(vehicle_light_power)
+ light_holder.set_light_on(vehicle_light_range && vehicle_light_power)
- light_pixel_x = -bound_x
- light_pixel_y = -bound_y
+ set_light_on(light_range && light_power)
healthcheck()
update_icon()
@@ -209,6 +209,8 @@
return
/obj/vehicle/multitile/Destroy()
+ QDEL_NULL(light_holder)
+
if(!QDELETED(interior))
QDEL_NULL(interior)
@@ -383,8 +385,9 @@
handle_all_modules_broken()
//vehicle is dead, no more lights
- if(health <= 0 && lighting_holder.light_range)
- lighting_holder.set_light_on(FALSE)
+ if(health <= 0 && light_holder.light_range)
+ set_light_on(FALSE)
+ light_holder.set_light_on(FALSE)
update_icon()
/*
@@ -441,19 +444,5 @@
for(var/obj/item/hardpoint/locomotion/Loco in hardpoints)
Loco.handle_acid_damage(A)
-/atom/movable/vehicle_light_holder
- light_system = MOVABLE_LIGHT
- mouse_opacity = MOUSE_OPACITY_TRANSPARENT
-
-/atom/movable/vehicle_light_holder/Initialize(mapload, ...)
- . = ..()
-
- var/atom/attached_to = loc
-
- forceMove(attached_to.loc)
- RegisterSignal(attached_to, COMSIG_MOVABLE_MOVED, PROC_REF(handle_parent_move))
-
-/atom/movable/vehicle_light_holder/proc/handle_parent_move(atom/movable/mover, atom/oldloc, direction)
- SIGNAL_HANDLER
-
- forceMove(get_turf(mover))
+/atom/movable/vehicle_light
+ light_system = DIRECTIONAL_LIGHT
diff --git a/code/modules/vehicles/multitile/multitile_interaction.dm b/code/modules/vehicles/multitile/multitile_interaction.dm
index 42b141327b..c4f1ed2d3d 100644
--- a/code/modules/vehicles/multitile/multitile_interaction.dm
+++ b/code/modules/vehicles/multitile/multitile_interaction.dm
@@ -134,22 +134,23 @@
take_damage_type(O.force * 0.05, "blunt", user) //Melee weapons from people do very little damage
// Frame repairs on the vehicle itself
-/obj/vehicle/multitile/proc/handle_repairs(obj/item/O, mob/user)
+/obj/vehicle/multitile/proc/handle_repairs(obj/item/repairing_item, mob/user)
if(user.action_busy)
return
+
var/max_hp = initial(health)
if(health > max_hp)
health = max_hp
to_chat(user, SPAN_NOTICE("The hull is fully intact."))
for(var/obj/item/hardpoint/holder/H in hardpoints)
if(H.health > 0)
- if(!iswelder(O))
- to_chat(user, SPAN_WARNING("You need welding tool to repair \the [H.name]."))
+ if(!iswelder(repairing_item))
+ to_chat(user, SPAN_WARNING("You need welding tool to repair [H.name]."))
return
- if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH))
+ if(!HAS_TRAIT(repairing_item, TRAIT_TOOL_BLOWTORCH))
to_chat(user, SPAN_WARNING("You need a stronger blowtorch!"))
return
- H.handle_repair(O, user)
+ H.handle_repair(repairing_item, user)
update_icon()
return
else
@@ -158,25 +159,25 @@
var/repair_message = "welding structural struts back in place"
var/sound_file = 'sound/items/weldingtool_weld.ogg'
- var/obj/item/tool/weldingtool/WT
+ var/obj/item/tool/weldingtool/welder
// For health < 75%, the frame needs welderwork, otherwise wrench
if(health < max_hp * 0.75)
- if(!iswelder(O))
+ if(!iswelder(repairing_item))
to_chat(user, SPAN_NOTICE("The frame is way too busted! Try using a [SPAN_HELPFUL("welder")]."))
return
- if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH))
+ if(!HAS_TRAIT(repairing_item, TRAIT_TOOL_BLOWTORCH))
to_chat(user, SPAN_NOTICE("You need a more powerful blowtorch!"))
return
- WT = O
- if(!WT.isOn())
- to_chat(user, SPAN_WARNING("\The [WT] needs to be on!"))
+ welder = repairing_item
+ if(!welder.isOn())
+ to_chat(user, SPAN_WARNING("[welder] needs to be on!"))
return
else
- if(!HAS_TRAIT(O, TRAIT_TOOL_WRENCH))
+ if(!HAS_TRAIT(repairing_item, TRAIT_TOOL_WRENCH))
to_chat(user, SPAN_NOTICE("The frame is structurally sound, but there are a lot of loose nuts and bolts. Try using a [SPAN_HELPFUL("wrench")]."))
return
@@ -184,7 +185,7 @@
sound_file = 'sound/items/Ratchet.ogg'
var/amount_fixed_adjustment = user.get_skill_duration_multiplier(SKILL_ENGINEER)
- user.visible_message(SPAN_WARNING("[user] [repair_message] on \the [src]."), SPAN_NOTICE("You begin [repair_message] on \the [src]."))
+ user.visible_message(SPAN_WARNING("[user] [repair_message] on [src]."), SPAN_NOTICE("You begin [repair_message] on [src]."))
playsound(get_turf(user), sound_file, 25)
while(health < max_hp)
@@ -192,27 +193,33 @@
playsound(get_turf(user), sound_file, 25)
if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD))
- user.visible_message(SPAN_WARNING("[user] stops [repair_message] on \the [src]."), SPAN_NOTICE("You stop [repair_message] on \the [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%."))
+ user.visible_message(SPAN_WARNING("[user] stops [repair_message] on [src]."), SPAN_NOTICE("You stop [repair_message] on [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%."))
return
health = min(health + max_hp/100 * (5 / amount_fixed_adjustment), max_hp)
-
- if(WT)
- WT.remove_fuel(1, user)
- if(WT.get_fuel() < 1)
- user.visible_message(SPAN_WARNING("[user] stops [repair_message] on \the [src]."), SPAN_NOTICE("You stop [repair_message] on \the [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%."))
- return
- if(health >= max_hp * 0.75)
- user.visible_message(SPAN_WARNING("[user] finishes [repair_message] on \the [src]."), SPAN_NOTICE("You finish [repair_message] on \the [src]. The frame is structurally sound now, but there are a lot of loose nuts and bolts. Try using a [SPAN_HELPFUL("wrench")]."))
- return
+ if(health >= max_hp * 0.50)
+ set_light_on(vehicle_light_range && vehicle_light_power)
+ light_holder.set_light_on(vehicle_light_range && vehicle_light_power)
+ to_chat(user, SPAN_NOTICE("[src]'s lights flicker to life!"))
to_chat(user, SPAN_NOTICE("Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%."))
+ if(!welder)
+ continue
+
+ welder.remove_fuel(1, user)
+ if(welder.get_fuel() < 1)
+ user.visible_message(SPAN_WARNING("[user] stops [repair_message] on [src]."), SPAN_NOTICE("You stop [repair_message] on [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%."))
+ return
+ if(health >= max_hp * 0.75)
+ user.visible_message(SPAN_WARNING("[user] finishes [repair_message] on [src]."), SPAN_NOTICE("You finish [repair_message] on [src]. The frame is structurally sound now, but there are a lot of loose nuts and bolts. Try using a [SPAN_HELPFUL("wrench")]."))
+ return
+
health = initial(health)
- lighting_holder.set_light_range(vehicle_light_range)
+
toggle_cameras_status(TRUE)
update_icon()
- user.visible_message(SPAN_NOTICE("[user] finishes [repair_message] on \the [src]."), SPAN_NOTICE("You finish [repair_message] on \the [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%. "))
+ user.visible_message(SPAN_NOTICE("[user] finishes [repair_message] on [src]."), SPAN_NOTICE("You finish [repair_message] on [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%. "))
return
//Special case for entering the vehicle without using the verb
diff --git a/code/modules/vehicles/tank/tank.dm b/code/modules/vehicles/tank/tank.dm
index ad69f80cdf..87f17458aa 100644
--- a/code/modules/vehicles/tank/tank.dm
+++ b/code/modules/vehicles/tank/tank.dm
@@ -36,7 +36,7 @@
move_momentum_build_factor = 1.8
move_turn_momentum_loss_factor = 0.6
- vehicle_light_range = 7
+ light_range = 4
// Rest (all the guns) is handled by the tank turret hardpoint
hardpoints_allowed = list(
diff --git a/code/modules/vehicles/van/van.dm b/code/modules/vehicles/van/van.dm
index fdb2f397bb..c017eae28d 100644
--- a/code/modules/vehicles/van/van.dm
+++ b/code/modules/vehicles/van/van.dm
@@ -41,7 +41,8 @@
movement_sound = 'sound/vehicles/tank_driving.ogg'
honk_sound = 'sound/vehicles/honk_2_truck.ogg'
- vehicle_light_range = 8
+ light_range = 3
+ vehicle_light_range = 6
move_max_momentum = 3
@@ -56,8 +57,6 @@
door_locked = FALSE
- mob_size_required_to_hit = MOB_SIZE_XENO
-
var/overdrive_next = 0
var/overdrive_cooldown = 15 SECONDS
var/overdrive_duration = 3 SECONDS
diff --git a/code/stylesheet.dm b/code/stylesheet.dm
index ab74dc547c..d1ddf06c2a 100644
--- a/code/stylesheet.dm
+++ b/code/stylesheet.dm
@@ -56,7 +56,7 @@ em {font-style: normal; font-weight: bold;}
.clfradio {color: #6f679c}
-.alpharadio {color: #EA0000;}
+.alpharadio {color: #828cff;}
.bravoradio {color: #C68610;}
.charlieradio {color: #AA55AA;}
.deltaradio {color: #007FCF;}
diff --git a/colonialmarines.dme b/colonialmarines.dme
index 4b06992969..7b253d2dc5 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -1,4 +1,4 @@
-s// DM Environment file for colonialmarines.dme.
+// DM Environment file for colonialmarines.dme.
// All manual changes should be made outside the BEGIN_ and END_ blocks.
// New source code should be placed in .dm files: choose File/New --> Code File.
// BEGIN_INTERNALS
@@ -11,6 +11,7 @@ s// DM Environment file for colonialmarines.dme.
#define DEBUG
// END_PREFERENCES
// BEGIN_INCLUDE
+#include "code\__odlint.dm"
#include "code\_byond_version_compat.dm"
#include "code\_compile_options.dm"
#include "code\_experiments.dm"
@@ -388,6 +389,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\datums\components\label.dm"
#include "code\datums\components\orbiter.dm"
#include "code\datums\components\overlay_lighting.dm"
+#include "code\datums\components\phone.dm"
#include "code\datums\components\rename.dm"
#include "code\datums\components\speed_modifier.dm"
#include "code\datums\components\toxin_buildup.dm"
@@ -396,6 +398,10 @@ s// DM Environment file for colonialmarines.dme.
#include "code\datums\components\autofire\_automated_fire.dm"
#include "code\datums\components\autofire\autofire.dm"
#include "code\datums\components\xeno\shield_slash.dm"
+#include "code\datums\components\xeno\ai_behavior_overrides\attack_override_behavior.dm"
+#include "code\datums\components\xeno\ai_behavior_overrides\base_override_behavior.dm"
+#include "code\datums\components\xeno\ai_behavior_overrides\capture_override_behavior.dm"
+#include "code\datums\components\xeno\ai_behavior_overrides\hive_override_behavior.dm"
#include "code\datums\construction\construction_template.dm"
#include "code\datums\construction\xenomorph\construction_template_xenomorph.dm"
#include "code\datums\decorators\decorator.dm"
@@ -657,6 +663,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\datums\weather\weather_map_holders\lv522_chances_claim.dm"
#include "code\datums\weather\weather_map_holders\lv624.dm"
#include "code\datums\weather\weather_map_holders\new_varadero.dm"
+#include "code\datums\weather\weather_map_holders\shivas_snowball.dm"
#include "code\datums\weather\weather_map_holders\sorokyne.dm"
#include "code\datums\xeno_shields\xeno_shield.dm"
#include "code\datums\xeno_shields\shield_types\crusher_shield.dm"
@@ -689,6 +696,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\game\area\chinook.dm"
#include "code\game\area\Corsat.dm"
#include "code\game\area\DesertDam.dm"
+#include "code\game\area\golden_arrow.dm"
#include "code\game\area\IceColony.dm"
#include "code\game\area\kutjevo.dm"
#include "code\game\area\LV522_Chances_Claim.dm"
@@ -942,6 +950,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\game\machinery\vending\vendor_types\crew\sea.dm"
#include "code\game\machinery\vending\vendor_types\crew\senior_officers.dm"
#include "code\game\machinery\vending\vendor_types\crew\staff_officer.dm"
+#include "code\game\machinery\vending\vendor_types\crew\staff_officer_armory.dm"
#include "code\game\machinery\vending\vendor_types\crew\synthetic.dm"
#include "code\game\machinery\vending\vendor_types\crew\vehicle_crew.dm"
#include "code\game\machinery\vending\vendor_types\squad_prep\squad_engineer.dm"
@@ -1365,6 +1374,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\modules\admin\ToRban.dm"
#include "code\modules\admin\game_master\game_master.dm"
#include "code\modules\admin\game_master\game_master_submenu.dm"
+#include "code\modules\admin\game_master\toggle_join_xeno.dm"
#include "code\modules\admin\game_master\game_master_submenu\vents.dm"
#include "code\modules\admin\medal_panel\medals_panel.dm"
#include "code\modules\admin\medal_panel\medals_panel_tgui.dm"
@@ -1584,8 +1594,8 @@ s// DM Environment file for colonialmarines.dme.
#include "code\modules\cm_marines\equipment\weapons.dm"
#include "code\modules\cm_marines\equipment\mortar\mortar_shells.dm"
#include "code\modules\cm_marines\equipment\mortar\mortars.dm"
-#include "code\modules\cm_phone\internal_phone.dm"
-#include "code\modules\cm_phone\phone.dm"
+#include "code\modules\cm_phone\handset.dm"
+#include "code\modules\cm_phone\phone_base.dm"
#include "code\modules\cm_preds\_yaut_defines.dm"
#include "code\modules\cm_preds\falcon.dm"
#include "code\modules\cm_preds\huntdata.dm"
@@ -1754,6 +1764,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\modules\law\laws\major_crime.dm"
#include "code\modules\law\laws\minor_crime.dm"
#include "code\modules\law\laws\optional.dm"
+#include "code\modules\law\laws\precautionary_charge.dm"
#include "code\modules\lighting\emissive_blocker.dm"
#include "code\modules\lighting\lighting_area.dm"
#include "code\modules\lighting\lighting_atom.dm"
@@ -1987,6 +1998,7 @@ s// DM Environment file for colonialmarines.dme.
#include "code\modules\mob\living\carbon\xenomorph\ai\movement\drone.dm"
#include "code\modules\mob\living\carbon\xenomorph\ai\movement\linger.dm"
#include "code\modules\mob\living\carbon\xenomorph\ai\movement\linger_facehugger.dm"
+#include "code\modules\mob\living\carbon\xenomorph\ai\movement\lurking.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Boiler.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Burrower.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Carrier.dm"
diff --git a/dependencies.sh b/dependencies.sh
index 2889751d36..f88c2f9b0a 100644
--- a/dependencies.sh
+++ b/dependencies.sh
@@ -19,3 +19,5 @@ export SPACEMAN_DMM_VERSION=suite-1.7.2
# Python version for mapmerge and other tools
export PYTHON_VERSION=3.7.9
+
+export OPENDREAM_VERSION=0.2.0
diff --git a/html/changelogs/AutoChangeLog-pr-4657.yml b/html/changelogs/AutoChangeLog-pr-4657.yml
deleted file mode 100644
index 4641f99bb6..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4657.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "CapCamIII"
-delete-after: True
-changes:
- - balance: "Crawling now only takes 1 second to move and no longer has an overhead icon when doing it."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4693.yml b/html/changelogs/AutoChangeLog-pr-4693.yml
deleted file mode 100644
index e13e912459..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4693.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "fira"
-delete-after: True
-changes:
- - bugfix: "Fixed Rangefinders/Designators preventing you from lazing if you looked up/down them without moving."
- - bugfix: "Fixed Rangefinders/Designators forcing you to look up/down again if you had moved while using them."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4703.yml b/html/changelogs/AutoChangeLog-pr-4703.yml
deleted file mode 100644
index c140f3ea46..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4703.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "CapCamIII"
-delete-after: True
-changes:
- - spellcheck: "UPP Synth Survivor on the Trijent Dam nightmare is now called a Support Synthetic instead of a Combat Synthetic, as its not a combat synthetic"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4713.yml b/html/changelogs/AutoChangeLog-pr-4713.yml
deleted file mode 100644
index 71a3a8cfd0..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4713.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Steelpoint"
-delete-after: True
-changes:
- - rscadd: "UPP ERT's have a chance to be neutral to the USCM."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4721.yml b/html/changelogs/AutoChangeLog-pr-4721.yml
deleted file mode 100644
index 5c78dc4499..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4721.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "SpartanBobby"
-delete-after: True
-changes:
- - maptweak: "Fixes incorrect DIR on fireshutters in memorial"
- - maptweak: "Corrects lack of warning stripe tile under door in north brig maint"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4724.yml b/html/changelogs/AutoChangeLog-pr-4724.yml
deleted file mode 100644
index 326c78aea2..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4724.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-author: "foxtrot1322"
-delete-after: True
-changes:
- - rscadd: "Added splints to the survival pouch"
- - rscadd: "Increased survival pouch storage space by 1"
- - spellcheck: "Updates the survival pouch's description"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4725.yml b/html/changelogs/AutoChangeLog-pr-4725.yml
deleted file mode 100644
index 4bd068d532..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4725.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "fira"
-delete-after: True
-changes:
- - bugfix: "Xeno and Megaphone abovehead chat speech should now properly be centered horizontally."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4727.yml b/html/changelogs/AutoChangeLog-pr-4727.yml
deleted file mode 100644
index e8bed292d8..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4727.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Birdtalon"
-delete-after: True
-changes:
- - rscadd: "USCM Service Jacket to SEA Vendor"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4730.yml b/html/changelogs/AutoChangeLog-pr-4730.yml
deleted file mode 100644
index b275429f33..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4730.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - bugfix: "Fixed imaginary friends not initializing correctly and throwing a runtime"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4731.yml b/html/changelogs/AutoChangeLog-pr-4731.yml
deleted file mode 100644
index 44d62ec78b..0000000000
--- a/html/changelogs/AutoChangeLog-pr-4731.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - ui: "Tweaked the position of some ghost alerts"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4799.yml b/html/changelogs/AutoChangeLog-pr-4799.yml
new file mode 100644
index 0000000000..49ff3a1de2
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4799.yml
@@ -0,0 +1,4 @@
+author: "private-tristan"
+delete-after: True
+changes:
+ - balance: "predators are no longer immune to molecular acid injected from spitter and boiler tailstabs"
\ No newline at end of file
diff --git a/html/changelogs/archive/2023-10.yml b/html/changelogs/archive/2023-10.yml
index dda0958c93..49bc7a7401 100644
--- a/html/changelogs/archive/2023-10.yml
+++ b/html/changelogs/archive/2023-10.yml
@@ -286,3 +286,145 @@
VileBeggar:
- rscadd: Dartboards are now functional and can be crafted with cardboard.
- bugfix: Fixed an issue with some deconstructed signs losing their icon.
+2023-10-21:
+ Birdtalon:
+ - rscadd: USCM Service Jacket to SEA Vendor
+ CapCamIII:
+ - balance: Crawling now only takes 1 second to move and no longer has an overhead
+ icon when doing it.
+ - balance: Timer on attempting to join ERT after death is now 30 seconds down from
+ 1 minute
+ - spellcheck: UPP Synth Survivor on the Trijent Dam nightmare is now called a Support
+ Synthetic instead of a Combat Synthetic, as its not a combat synthetic
+ Drathek:
+ - bugfix: Fixed imaginary friends not initializing correctly and throwing a runtime
+ - ui: Tweaked the position of some ghost alerts
+ SpartanBobby:
+ - maptweak: Fixes incorrect DIR on fireshutters in memorial
+ - maptweak: Corrects lack of warning stripe tile under door in north brig maint
+ Steelpoint:
+ - rscadd: UPP ERT's have a chance to be neutral to the USCM.
+ fira:
+ - bugfix: Xeno and Megaphone abovehead chat speech should now properly be centered
+ horizontally.
+ - bugfix: Fixed Rangefinders/Designators preventing you from lazing if you looked
+ up/down them without moving.
+ - bugfix: Fixed Rangefinders/Designators forcing you to look up/down again if you
+ had moved while using them.
+ foxtrot1322:
+ - rscadd: Added splints to the survival pouch
+ - rscadd: Increased survival pouch storage space by 1
+ - spellcheck: Updates the survival pouch's description
+2023-10-22:
+ Drathek:
+ - bugfix: Fix incend and cluster OBs not respecting ceiling OB protections.
+ - bugfix: Disabled code in icon2html that is causing bad icon operations
+ Morrow:
+ - server: the rustg mysql driver is now properly compatible with mariadb
+ Zonespace27:
+ - rscadd: Mentors can now unmark mhelps
+ fira:
+ - bugfix: Removed redundant double binding for F1 to AdminHelp from default keybinds.
+ This does not affect existing users or their settings.
+ - rscadd: Stamping papers now makes a noise.
+ - bugfix: Fixed incorrect Reqs vendors visuals on the Almayer. They now blend in
+ with the walls again.
+ - bugfix: Re-fixed Megaphone above-head-chat drifting to the left.
+ harryob:
+ - admin: no more href token errors when changing the game mode via game panel
+ - bugfix: mentorhelp response no longer gives a dead discord link
+ - admin: view-target-records now allows you to note people properly
+ kiVts:
+ - rscadd: Ghosts get notified when they are being revived by DFB property
+ - balance: DFB property healing threshold lowered, You can create DFB property higher
+ than one.
+ realforest2001:
+ - rscadd: Added Discretionary Arrest to JAS.
+ - rscadd: Added a new category to JAS, Precautionary Charges. Moves Insanity and
+ POW to this category.
+2023-10-23:
+ QuickLode:
+ - balance: Nerfs synth surv pouch by removing 1 storage slot.
+ SpypigDev:
+ - rscadd: CIC Armory SO vendor
+ - balance: Moved most combat-themed gear from SO spawn vendors, to CIC Armory vendor
+ - balance: Made RTO pack a point-buy item in CIC Armory vendor for SOs
+ Steelpoint:
+ - balance: Revolver Heavy ammo no longer stuns targets it strikes, it will instead
+ knock them back and slow them down for a short time.
+ harryob:
+ - server: the server now respects /string/title for late joiners
+ stalkerino:
+ - balance: m39 is able to use vertigrip
+2023-10-24:
+ Segrain:
+ - bugfix: Slicing food once again works as intended.
+2023-10-25:
+ fira:
+ - bugfix: Fixed Ghosts and Queen Eye occasionally "eating" pounces in place of a
+ mob on the same turf.
+ - bugfix: Re-Re-Fixed Xeno Above Head Chat offsets, for real this time
+ - bugfix: Fixed people talking in radios all the time. Finally some quiet.
+ - bugfix: deadchat death messages should now display immediately rather than being
+ delayed a couple seconds.
+2023-10-26:
+ 4hands44:
+ - rscadd: Added more attachments, and belts to the CO arsenal.
+ - rscadd: CO now has an Essentials Kit like other roles, containing his Designator,
+ and other useful tools.
+ - rscadd: Re-Adds Bridgecoat to some Officer Dress vendors. (Limited to CO(+) and
+ XO currently.)
+ - rscdel: Removed Laser Designator from CO spawn Preset.
+ - balance: CO can now vend welding Helmet visors.
+ - balance: Adds grenade packets to CO Vendor.
+ XDinka:
+ - rscadd: 'Added four new haircuts: gentle ponytail, edgar haircut, emo bun, taper
+ haircut.'
+2023-10-27:
+ Backsea:
+ - bugfix: Fixed the incorrectly placed shutters at req and that one light near CIC
+ Birdtalon:
+ - refactor: Refactored praetorian pierce ability
+ - bugfix: Praetorian vanguard can no longer pierce through windowed doors
+ SASoperative:
+ - rscadd: Added donator item and sprites
+ Zonespace27:
+ - rscdel: Re-removed CO/XO bridge coat
+ fira:
+ - rscadd: Added about 50 new tips.
+ - rscadd: Bloody footprints are now slightly offset to break long visual straight
+ lines.
+ - bugfix: Items do not align back to the center of turfs anymore when picked from
+ a surface (table or rack)
+ - rscadd: Some more items now have offsets on the map display, and they all can
+ be slightly offset.
+ - code_imp: Rewrote Xeno Acid ticking code.
+ - bugfix: Weather updates won't cause turfs to acid melt more rapidly anymore
+ - bugfix: Fixed various issues in the Networking between Turing machine and Smartfridges.
+ realforest2001:
+ - bugfix: Fixes custom ERT calling broadcasting when it should not.
+ - code_imp: Removes unused vars from ERT procs.
+ - code_imp: Renames the announce var in ERT procs to be more indicative of what
+ it does.
+ - rscadd: Added a setting on custom ERTs for announcing beacon was received.
+2023-10-29:
+ Segrain:
+ - bugfix: Incendiary OB once again spreads to intended size.
+ fira:
+ - bugfix: Sprite-click shots onto Xenos are no longer affected by limb-targeting
+ penalty, because it was an accuracy debuff when there is no inherent benefit
+ to targeting Xeno limbs.
+ realforest2001:
+ - imageadd: Added sprites for provost senior and marshal uniforms.
+ - spellcheck: Gave unique names to the provost armour subtypes.
+ - balance: Prevented most provost armour from being able to fit inside bags.
+ - balance: Returned provost armour to the same slowdowns as MP armour.
+ - code_imp: Removed a lot of duplicate code in Provost presets and uniform/suits.
+2023-10-31:
+ SASoperative:
+ - bugfix: Fixed sprite issue by disabling camo variant for donator item
+ fira:
+ - bugfix: Fixed Limbs and Organs deleting incorrectly on species change.
+ mullenpaul:
+ - refactor: reworked trijent elevators to be reusable on new maps
+ - maptweak: Trijent map now has two elevators, lz1 to engineering and lz2 to omega
diff --git a/html/changelogs/archive/2023-11.yml b/html/changelogs/archive/2023-11.yml
new file mode 100644
index 0000000000..1abcfaba81
--- /dev/null
+++ b/html/changelogs/archive/2023-11.yml
@@ -0,0 +1,4 @@
+2023-11-01:
+ HeresKozmos:
+ - rscadd: added flashlight, donk pocket box, interview table, folder, taperecorder,
+ ink toner, extra lights and expanded the size of the CC's room.
diff --git a/icons/effects/game_master_xeno_behaviors.dmi b/icons/effects/game_master_xeno_behaviors.dmi
new file mode 100644
index 0000000000..ea6f04a987
Binary files /dev/null and b/icons/effects/game_master_xeno_behaviors.dmi differ
diff --git a/icons/mob/humans/human_hair.dmi b/icons/mob/humans/human_hair.dmi
index ca4a20bcaf..9634a2543a 100644
Binary files a/icons/mob/humans/human_hair.dmi and b/icons/mob/humans/human_hair.dmi differ
diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi
index 8a51050c03..a6e9ef72c0 100644
Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ
diff --git a/icons/mob/humans/onmob/head_0.dmi b/icons/mob/humans/onmob/head_0.dmi
index ce576bdd9c..51cad85586 100644
Binary files a/icons/mob/humans/onmob/head_0.dmi and b/icons/mob/humans/onmob/head_0.dmi differ
diff --git a/icons/mob/humans/onmob/suit_0.dmi b/icons/mob/humans/onmob/suit_0.dmi
index d7dfd5394f..52f2c7f0a9 100644
Binary files a/icons/mob/humans/onmob/suit_0.dmi and b/icons/mob/humans/onmob/suit_0.dmi differ
diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi
index 624d8792cf..a911171f85 100644
Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ
diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi
index 873c325a56..7a2dcce20c 100644
Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ
diff --git a/icons/obj/items/clothing/backpacks.dmi b/icons/obj/items/clothing/backpacks.dmi
index f9c06fca44..4119b32a09 100644
Binary files a/icons/obj/items/clothing/backpacks.dmi and b/icons/obj/items/clothing/backpacks.dmi differ
diff --git a/icons/obj/items/clothing/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi
index d05d7ffdf7..fb655de1ea 100644
Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ
diff --git a/icons/obj/items/clothing/hats.dmi b/icons/obj/items/clothing/hats.dmi
index 7d2c45103b..a6a0e6fb90 100644
Binary files a/icons/obj/items/clothing/hats.dmi and b/icons/obj/items/clothing/hats.dmi differ
diff --git a/icons/obj/items/clothing/suits.dmi b/icons/obj/items/clothing/suits.dmi
index d158d9f6bd..10fbfff30d 100644
Binary files a/icons/obj/items/clothing/suits.dmi and b/icons/obj/items/clothing/suits.dmi differ
diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi
index 4266db88af..765f9deae1 100644
Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ
diff --git a/icons/obj/items/syringe.dmi b/icons/obj/items/syringe.dmi
index d08b2a8c2d..d54123a898 100644
Binary files a/icons/obj/items/syringe.dmi and b/icons/obj/items/syringe.dmi differ
diff --git a/interface/interface.dm b/interface/interface.dm
index abbf4049e5..2ea40d924d 100644
--- a/interface/interface.dm
+++ b/interface/interface.dm
@@ -43,7 +43,7 @@
if(tgui_alert(src, "This will open the discord in your browser. Are you sure?", "Confirm", list("Yes", "No")) != "Yes")
return
- src << link("https://discord.gg/v6P6wns5dN")
+ src << link("[CONFIG_GET(string/discordurl)]")
return
/client/verb/github()
diff --git a/interface/skin.dmf b/interface/skin.dmf
index 48aa3d0d7c..dfd279983e 100644
--- a/interface/skin.dmf
+++ b/interface/skin.dmf
@@ -164,7 +164,6 @@ window "mainwindow"
anchor2 = -1,-1
is-default = true
saved-params = "pos;size;is-minimized;is-maximized"
- title = "CM-SS13 - USS Almayer"
is-maximized = true
statusbar = false
icon = 'icons\\taskbar\\gml_distress.png'
@@ -288,15 +287,16 @@ window "infowindow"
elem "discord"
type = BUTTON
pos = 420,5
- size = 210x50
+ size = 210x45
anchor1 = 66,0
anchor2 = 97,0
background-color = #7289da
- font-size = 22px
+ font-size = 20px
font-family = "Arial"
text-align = center
+ font-weight = bold
saved-params = "is-checked"
- text = "discord.gg/v6P6wns5dN"
+ text = "discord.gg/PVE-CMSS13"
command = "discord"
window "outputwindow"
diff --git a/map_config/maps.txt b/map_config/maps.txt
index ba0bd17a89..96a71cf44a 100644
--- a/map_config/maps.txt
+++ b/map_config/maps.txt
@@ -20,7 +20,6 @@ map bigredv2
endmap
map prison_station_fop
- disabled
endmap
map fiorina_sciannex
@@ -30,7 +29,6 @@ endmap
map corsat
minplayers 130
voteweight 0
- disabled
endmap
map desert_dam
@@ -45,7 +43,6 @@ endmap
map shivas_snowball
voteweight 0
- disabled
endmap
map kutjevo
@@ -62,5 +59,8 @@ endmap
map new_varadero
endmap
+map derelict_almayer
+endmap
+
map whiskey_outpost_v2
endmap
diff --git a/maps/derelict_almayer.json b/maps/derelict_almayer.json
new file mode 100644
index 0000000000..0d0fc08da4
--- /dev/null
+++ b/maps/derelict_almayer.json
@@ -0,0 +1,18 @@
+{
+ "map_name": "Derelict Almayer",
+ "map_path": "map_files/derelict_almayer",
+ "map_file": "derelict_almayer.dmm",
+ "webmap_url": "Almayer",
+ "map_item_type": "/obj/item/map/almayer",
+ "announce_text": "An automated distress signal has been received from the \"USS Almayer\". A response team from the ###SHIPNAME### will be dispatched shortly to investigate.",
+ "traits": [{ "Ground": true }],
+ "nightmare_path": "maps/Nightmare/maps/derelict_almayer/",
+ "camouflage": "classic",
+ "gamemodes": [
+ "Distress Signal",
+ "Hunter Games",
+ "Hive Wars",
+ "Faction Clash",
+ "Infection"
+ ]
+}
diff --git a/maps/interiors/tank.dmm b/maps/interiors/tank.dmm
index 75da1e24f7..8dc0bf1419 100644
--- a/maps/interiors/tank.dmm
+++ b/maps/interiors/tank.dmm
@@ -6,7 +6,7 @@
name = "back entrance marker";
tag = "back"
},
-/obj/structure/transmitter{
+/obj/structure/phone_base{
dir = 8;
layer = 3.1;
name = "Tank Telephone";
diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm
index 6439378dba..e9b77c1ca9 100644
--- a/maps/map_files/BigRed/BigRed.dmm
+++ b/maps/map_files/BigRed/BigRed.dmm
@@ -1328,7 +1328,7 @@
/obj/structure/machinery/computer/telecomms/monitor{
req_one_access_txt = "19;200"
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "Solaris Ridge";
phone_color = "yellow";
@@ -2958,7 +2958,7 @@
"aiG" = (
/obj/structure/surface/table,
/obj/item/handcuffs,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_color = "red";
phone_id = "Marshal Office"
@@ -7964,7 +7964,7 @@
"awB" = (
/obj/structure/surface/table/holotable/wood,
/obj/item/reagent_container/food/drinks/coffee,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lambda Labs";
phone_color = "blue";
phone_id = "Administration"
@@ -9835,7 +9835,7 @@
/obj/item/device/healthanalyzer,
/obj/structure/pipes/vents/pump,
/obj/item/reagent_container/spray/cleaner,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Solaris Ridge";
phone_color = "green";
phone_id = "Clinic";
@@ -11088,7 +11088,7 @@
"aFl" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "Eta Labs";
phone_id = "Observation";
@@ -14186,7 +14186,7 @@
dir = 4;
health = 80
},
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_color = "blue";
phone_id = "Administration"
@@ -14648,7 +14648,7 @@
/area/bigredv2/caves/eta/storage)
"aOQ" = (
/obj/structure/surface/table,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Eta Labs";
phone_color = "Blue";
phone_id = "Director"
@@ -14778,7 +14778,7 @@
/area/bigredv2/outside/hydroponics)
"aPf" = (
/obj/structure/surface/table,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Eta Labs";
phone_id = "Workshop"
},
@@ -15068,7 +15068,7 @@
dir = 4;
health = 80
},
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor{
dir = 4;
icon_state = "warnwhite"
@@ -17370,7 +17370,7 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Solaris Ridge";
phone_color = "blue";
phone_id = "Operations";
@@ -22512,7 +22512,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lambda Labs";
phone_id = "Virology"
},
@@ -22833,7 +22833,7 @@
/area/bigredv2/outside/filtration_plant)
"boY" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Solaris Ridge";
phone_color = "yellow";
phone_id = "Filtration";
@@ -23347,7 +23347,7 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Solaris Ridge";
phone_color = "yellow";
phone_id = "Engineering";
@@ -24065,7 +24065,7 @@
"bwr" = (
/obj/structure/machinery/light,
/obj/structure/surface/table,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_color = "green";
phone_id = "Virology Lab"
@@ -24158,7 +24158,7 @@
"bwQ" = (
/obj/structure/surface/table,
/obj/item/tool/screwdriver,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Eta Labs";
phone_color = "yellow";
phone_id = "Robotics"
@@ -25169,7 +25169,7 @@
"bzF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor{
dir = 1;
icon_state = "darkblue2"
@@ -27603,7 +27603,7 @@
/area/bigredv2/caves_sw)
"daB" = (
/obj/structure/surface/table/reinforced,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lambda Labs";
phone_id = "Xenobiology"
},
@@ -28788,7 +28788,7 @@
},
/area/bigredv2/caves/eta/living)
"fyO" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Solaris Ridge";
phone_color = "green";
phone_id = "Clinic Labs";
@@ -28898,7 +28898,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lambda Labs";
phone_id = "Surgery";
pixel_y = 24
@@ -29563,7 +29563,7 @@
},
/area/bigredv2/outside/filtration_plant)
"htp" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
do_not_disturb = 1;
dir = 4;
phone_category = "Lambda Labs";
@@ -31175,7 +31175,7 @@
},
/area/bigredv2/caves/eta/xenobiology)
"kyz" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "Eta Labs";
phone_id = "Observation";
@@ -32691,7 +32691,7 @@
/area/bigredv2/caves/mining)
"ofJ" = (
/obj/structure/surface/table,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Eta Labs";
phone_color = "red";
phone_id = "Security"
@@ -36454,7 +36454,7 @@
/area/bigredv2/caves_research)
"vBT" = (
/obj/structure/surface/table/reinforced,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_id = "Clinic Reception"
},
@@ -36812,7 +36812,7 @@
/area/bigredv2/outside/w)
"wry" = (
/obj/structure/surface/table,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_color = "blue";
phone_id = "Space Port"
diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm
index 8907ab630f..ec219d07b9 100644
--- a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm
+++ b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm
@@ -69,7 +69,7 @@
/area/bigredv2/outside/filtration_cave_cas)
"kd" = (
/obj/structure/surface/table/almayer,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_color = "red";
phone_id = "Filtration Checkpoint"
diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm
index 2e89ccc9f4..ae681377cb 100644
--- a/maps/map_files/BigRed/standalone/medbay-v3.dmm
+++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm
@@ -1729,7 +1729,7 @@
/area/bigredv2/outside/medical)
"eD" = (
/obj/structure/surface/table/reinforced,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Solaris Ridge";
phone_id = "Clinic Reception"
},
@@ -2055,7 +2055,7 @@
},
/area/bigredv2/outside/medical)
"Xh" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Solaris Ridge";
phone_color = "green";
phone_id = "Clinic Labs";
diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm
index e265184172..c95caf2a9b 100644
--- a/maps/map_files/CORSAT/Corsat.dmm
+++ b/maps/map_files/CORSAT/Corsat.dmm
@@ -16467,7 +16467,7 @@
/turf/open/floor/wood,
/area/corsat/gamma/administration)
"aTJ" = (
-/obj/item/phone,
+/obj/item/handset,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/surface/table/woodentable/fancy,
/turf/open/floor{
@@ -25672,7 +25672,7 @@
/area/corsat/omega/offices)
"bug" = (
/obj/structure/surface/table/almayer,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
dir = 8;
icon_state = "bluegrey"
@@ -29328,7 +29328,7 @@
/area/corsat/omega/hangar/security)
"bEt" = (
/obj/structure/surface/table/reinforced,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
dir = 8;
icon_state = "red"
@@ -36395,7 +36395,7 @@
/area/corsat/gamma/hangar/cargo)
"csM" = (
/obj/structure/surface/table/almayer,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
icon_state = "bluegreycorner"
},
@@ -38369,7 +38369,7 @@
/area/corsat/sigma/biodome/gunrange)
"dYh" = (
/obj/structure/surface/table/woodentable/fancy,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor{
dir = 8;
icon_state = "carpet15-15"
@@ -41794,7 +41794,7 @@
/area/corsat/theta/airlock/east/id)
"gwW" = (
/obj/structure/surface/table/reinforced,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
dir = 10;
icon_state = "red"
@@ -48246,7 +48246,7 @@
/area/corsat/gamma/biodome/complex)
"lnW" = (
/obj/structure/surface/table/reinforced,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
dir = 4;
icon_state = "purplewhite"
@@ -48818,7 +48818,7 @@
/area/corsat/sigma/south/complex)
"lIX" = (
/obj/structure/surface/table/reinforced,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
icon_state = "purplewhite"
},
@@ -54498,7 +54498,7 @@
dir = 4;
health = 80
},
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/corsat{
icon_state = "blue"
},
@@ -64466,7 +64466,7 @@
/obj/item/ashtray/plastic{
pixel_x = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -4;
pixel_y = 4
},
diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm
index 17a02d24ce..9473863bf8 100644
--- a/maps/map_files/DesertDam/Desert_Dam.dmm
+++ b/maps/map_files/DesertDam/Desert_Dam.dmm
@@ -1684,19 +1684,6 @@
icon_state = "bright_clean2"
},
/area/desert_dam/building/administration/control_room)
-"afr" = (
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/surface/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
-/area/desert_dam/building/administration/control_room)
"afs" = (
/obj/structure/window/reinforced/tinted{
dir = 8
@@ -1890,13 +1877,6 @@
/obj/structure/flora/grass/desert/lightgrass_2,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_labs)
-"afY" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
-/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"afZ" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
@@ -3652,13 +3632,6 @@
icon_state = "darkpurple2"
},
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
-"alg" = (
-/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alh" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
@@ -3694,13 +3667,6 @@
icon_state = "warnplate"
},
/area/desert_dam/interior/lab_northeast/east_lab_containment)
-"alm" = (
-/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aln" = (
/turf/open/floor/prison{
dir = 4;
@@ -5747,13 +5713,6 @@
icon_state = "cement15"
},
/area/desert_dam/interior/dam_interior/west_tunnel)
-"ark" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"arl" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -7134,14 +7093,6 @@
icon_state = "cement13"
},
/area/desert_dam/interior/dam_interior/west_tunnel)
-"avn" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"avo" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
@@ -7153,10 +7104,6 @@
icon_state = "red"
},
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
-"avp" = (
-/obj/structure/surface/table,
-/turf/open/floor/prison,
-/area/desert_dam/building/water_treatment_two/floodgate_control)
"avq" = (
/turf/open/floor/prison{
icon_state = "red"
@@ -7215,12 +7162,6 @@
icon_state = "white"
},
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
-"avA" = (
-/obj/structure/surface/table,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avB" = (
/obj/structure/machinery/autolathe,
/turf/open/floor/prison{
@@ -7919,13 +7860,6 @@
icon_state = "red"
},
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
-"axB" = (
-/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"axC" = (
/turf/open/desert/dirt{
dir = 8;
@@ -8073,12 +8007,6 @@
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/desert_dam/building/security/office)
-"ayb" = (
-/obj/structure/closet/secure_closet/scientist,
-/turf/open/floor{
- icon_state = "wood"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayd" = (
/obj/structure/showcase{
icon_state = "mechfab1"
@@ -8228,13 +8156,6 @@
"ayD" = (
/turf/open/desert/rock/deep/transition,
/area/desert_dam/exterior/valley/valley_wilderness)
-"ayE" = (
-/obj/structure/closet/secure_closet/RD,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayF" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/guestpass,
@@ -8243,15 +8164,6 @@
icon_state = "blue"
},
/area/desert_dam/interior/lab_northeast/east_lab_RND)
-"ayG" = (
-/obj/structure/surface/table,
-/obj/effect/spawner/random/tech_supply,
-/obj/item/phone,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayH" = (
/turf/open/desert/rock/deep{
icon_state = "rock3"
@@ -8412,12 +8324,6 @@
icon_state = "blue"
},
/area/desert_dam/building/administration/control_room)
-"azg" = (
-/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 10
- },
-/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azh" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -9407,12 +9313,6 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
-"aCq" = (
-/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
-/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aCr" = (
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
@@ -9666,11 +9566,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/interior/wood/alt,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
-"aDi" = (
-/obj/structure/surface/table/woodentable,
-/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor/interior/wood,
-/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDk" = (
/obj/item/stack/sheet/wood{
amount = 50
@@ -10083,21 +9978,6 @@
icon_state = "cell_stripe"
},
/area/shuttle/trijent_shuttle/omega)
-"aEu" = (
-/obj/effect/decal/sand_overlay/sand1/corner1{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{
- pixel_y = 32
- },
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
-/area/desert_dam/exterior/valley/valley_medical)
"aEv" = (
/obj/structure/stairs{
dir = 1
@@ -12790,13 +12670,6 @@
name = "reinforced metal wall"
},
/area/desert_dam/building/substation/northeast)
-"aMA" = (
-/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/building/substation/northeast)
"aMB" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -12909,13 +12782,6 @@
},
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_northwest)
-"aMQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
-/area/desert_dam/building/warehouse/warehouse)
"aMR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/conveyor_switch{
@@ -14363,10 +14229,6 @@
/obj/structure/flora/tree/joshua,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_telecoms)
-"aRB" = (
-/obj/docking_port/stationary/trijent_elevator/lz2,
-/turf/open/gm/empty,
-/area/shuttle/trijent_shuttle/lz2)
"aRC" = (
/turf/open/floor{
dir = 8;
@@ -14508,13 +14370,6 @@
icon_state = "7,1"
},
/area/desert_dam/building/water_treatment_two)
-"aRX" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/dam_interior/garage)
"aRZ" = (
/turf/open/asphalt/cement_sunbleached{
icon_state = "cement_sunbleached14"
@@ -14553,14 +14408,6 @@
icon_state = "darkyellowcorners2"
},
/area/desert_dam/building/substation/northwest)
-"aSf" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/building/substation/northwest)
"aSg" = (
/turf/open/asphalt/cement_sunbleached{
icon_state = "cement_sunbleached19"
@@ -14680,20 +14527,6 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/landing_pad_one)
-"aSz" = (
-/obj/structure/surface/table/reinforced,
-/obj/structure/machinery/door/window/brigdoor/westleft{
- name = "Security Desk"
- },
-/obj/structure/machinery/door/window/eastright{
- name = "Security Desk"
- },
-/obj/item/tool/stamp,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10
- },
-/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"aSC" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 1
@@ -15585,10 +15418,6 @@
"aVI" = (
/turf/closed/wall/r_wall,
/area/desert_dam/building/administration/control_room)
-"aVJ" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/wood,
-/area/desert_dam/building/administration/office)
"aVK" = (
/obj/structure/machinery/light{
dir = 1
@@ -15608,10 +15437,6 @@
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/desert_dam/building/security/marshals_office)
-"aVN" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/wood,
-/area/desert_dam/building/administration/office)
"aVO" = (
/obj/structure/machinery/photocopier,
/turf/open/floor/wood,
@@ -16018,13 +15843,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
-"aXf" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/dam_interior/garage)
"aXg" = (
/obj/structure/machinery/light{
dir = 8
@@ -16221,10 +16039,6 @@
"aXM" = (
/turf/open/floor/interior/wood,
/area/desert_dam/building/security/detective)
-"aXN" = (
-/obj/structure/filingcabinet/security,
-/turf/open/floor/interior/wood,
-/area/desert_dam/building/security/detective)
"aXO" = (
/obj/structure/machinery/vending/cola,
/turf/open/floor{
@@ -16284,19 +16098,11 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
-"aXX" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/interior/wood,
-/area/desert_dam/building/security/marshals_office)
"aXY" = (
/turf/open/desert/dirt{
icon_state = "desert_transition_corner1"
},
/area/desert_dam/exterior/valley/valley_wilderness)
-"aXZ" = (
-/obj/structure/filingcabinet/security,
-/turf/open/floor/interior/wood,
-/area/desert_dam/building/security/marshals_office)
"aYa" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal3"
@@ -17043,20 +16849,6 @@
icon_state = "cement_sunbleached1"
},
/area/desert_dam/exterior/valley/valley_telecoms)
-"bap" = (
-/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
-/area/desert_dam/building/administration/lobby)
-"baq" = (
-/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
-/area/desert_dam/building/administration/lobby)
"bar" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -17443,16 +17235,6 @@
dir = 5
},
/area/desert_dam/interior/dam_interior/central_tunnel)
-"bby" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
-/area/desert_dam/building/mining/workshop_foyer)
"bbz" = (
/turf/open/desert/dirt{
dir = 8;
@@ -18021,10 +17803,6 @@
icon_state = "cement_sunbleached13"
},
/area/desert_dam/exterior/valley/valley_northwest)
-"bdB" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/wood,
-/area/desert_dam/building/administration/overseer_office)
"bdC" = (
/turf/open/floor/wood,
/area/desert_dam/building/administration/overseer_office)
@@ -18139,10 +17917,6 @@
icon_state = "bright_clean"
},
/area/desert_dam/building/water_treatment_two/hallway)
-"bdT" = (
-/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/interior/wood/alt,
-/area/desert_dam/building/security/detective)
"bdU" = (
/obj/structure/machinery/light{
dir = 4
@@ -18649,10 +18423,6 @@
"bfz" = (
/turf/open/floor/interior/wood,
/area/desert_dam/building/security/courtroom)
-"bfA" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/wood,
-/area/desert_dam/building/administration/overseer_office)
"bfB" = (
/obj/structure/stairs,
/obj/structure/platform{
@@ -20215,13 +19985,6 @@
icon_state = "red"
},
/area/desert_dam/building/water_treatment_two/lobby)
-"bkO" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
-/area/desert_dam/building/water_treatment_two/lobby)
"bkP" = (
/turf/open/desert/dirt{
dir = 9;
@@ -20566,18 +20329,6 @@
icon_state = "floor_plate"
},
/area/desert_dam/building/security/lobby)
-"blX" = (
-/obj/structure/surface/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- health = 80
- },
-/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
-/area/desert_dam/building/security/lobby)
"blY" = (
/turf/open/floor/prison{
dir = 4;
@@ -20589,13 +20340,6 @@
name = "reinforced metal wall"
},
/area/desert_dam/interior/dam_interior/tech_storage)
-"bma" = (
-/obj/structure/closet/secure_closet/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
-/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bmb" = (
/turf/open/floor/prison{
dir = 4;
@@ -21006,13 +20750,6 @@
icon_state = "blue"
},
/area/desert_dam/interior/dam_interior/tech_storage)
-"bnm" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
-/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bnp" = (
/obj/structure/machinery/light{
dir = 1
@@ -21808,20 +21545,6 @@
icon_state = "cement_sunbleached1"
},
/area/desert_dam/exterior/landing_pad_one)
-"bpR" = (
-/obj/structure/surface/table,
-/obj/item/stack/sheet/metal{
- amount = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/dam_interior/smes_main)
"bpS" = (
/obj/structure/filtration/coagulation_arm,
/obj/effect/blocker/toxic_water,
@@ -22236,12 +21959,6 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/valley_mining)
-"brm" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
-/area/desert_dam/building/security/evidence)
"brn" = (
/turf/open/floor/prison{
dir = 1;
@@ -22763,10 +22480,6 @@
icon_state = "bright_clean"
},
/area/desert_dam/building/security/southern_hallway)
-"bsR" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/wood,
-/area/desert_dam/building/warehouse/breakroom)
"bsS" = (
/turf/open/floor/prison{
dir = 8;
@@ -22886,16 +22599,6 @@
icon_state = "darkbrown2"
},
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
-"btx" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
-/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bty" = (
/turf/closed/wall/r_wall,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
@@ -23061,10 +22764,6 @@
icon_state = "darkred2"
},
/area/desert_dam/building/security/southern_hallway)
-"bua" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/wood,
-/area/desert_dam/building/warehouse/breakroom)
"bub" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -23112,12 +22811,6 @@
icon_state = "cement_sunbleached1"
},
/area/desert_dam/exterior/valley/valley_mining)
-"bui" = (
-/obj/structure/closet/bombclosetsecurity,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
-/area/desert_dam/building/security/staffroom)
"buj" = (
/turf/open/asphalt/cement,
/area/desert_dam/exterior/valley/valley_wilderness)
@@ -23514,12 +23207,6 @@
name = "reinforced metal wall"
},
/area/desert_dam/building/warehouse/warehouse)
-"bvB" = (
-/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
-/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"bvD" = (
/turf/open/floor/prison,
/area/desert_dam/building/security/staffroom)
@@ -24136,6 +23823,16 @@
icon_state = "darkyellowcorners2"
},
/area/desert_dam/interior/dam_interior/smes_main)
+"bxC" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bxD" = (
/turf/open/floor{
dir = 8;
@@ -27100,25 +26797,6 @@
icon_state = "greencorner"
},
/area/desert_dam/interior/dam_interior/atmos_storage)
-"bHB" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/phoron{
- amount = 25
- },
-/obj/item/stack/sheet/plasteel{
- amount = 30;
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/storage/briefcase/inflatable,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
-/area/desert_dam/interior/dam_interior/atmos_storage)
"bHD" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
@@ -27253,23 +26931,6 @@
icon_state = "darkyellow2"
},
/area/desert_dam/interior/dam_interior/primary_tool_storage)
-"bIb" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/dam_interior/primary_tool_storage)
-"bIc" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bId" = (
/turf/open/floor/prison{
dir = 4;
@@ -27617,13 +27278,6 @@
icon_state = "bright_clean"
},
/area/desert_dam/interior/dam_interior/hanger)
-"bJv" = (
-/obj/structure/bed/stool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
-/area/desert_dam/interior/dam_interior/smes_backup)
"bJx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
@@ -28177,13 +27831,6 @@
icon_state = "whiteyellow"
},
/area/desert_dam/interior/dam_interior/lobby)
-"bLu" = (
-/obj/structure/closet/secure_closet/medical_doctor,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
-/area/desert_dam/building/medical/chemistry)
"bLv" = (
/obj/structure/surface/table,
/turf/open/floor{
@@ -28357,15 +28004,6 @@
icon_state = "sterile_white"
},
/area/desert_dam/interior/dam_interior/workshop)
-"bMa" = (
-/obj/structure/closet/toolcloset,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
-/area/desert_dam/interior/dam_interior/workshop)
"bMb" = (
/turf/closed/wall/hangar{
name = "reinforced metal wall"
@@ -29430,15 +29068,6 @@
},
/turf/open/floor/prison,
/area/desert_dam/building/security/prison)
-"bPI" = (
-/obj/structure/surface/table/reinforced,
-/obj/structure/machinery/door/window/brigdoor/northleft{
- dir = 8
- },
-/turf/open/floor{
- icon_state = "dark2"
- },
-/area/desert_dam/building/security/prison)
"bPJ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -29504,18 +29133,6 @@
icon_state = "sterile_white"
},
/area/desert_dam/interior/dam_interior/workshop)
-"bPT" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- icon_state = "dark"
- },
-/area/desert_dam/interior/dam_interior/office)
-"bPU" = (
-/obj/structure/filingcabinet,
-/turf/open/floor{
- icon_state = "dark"
- },
-/area/desert_dam/interior/dam_interior/office)
"bPV" = (
/obj/structure/desertdam/decals/road_edge,
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -29526,14 +29143,6 @@
},
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
-"bPW" = (
-/obj/structure/surface/table/woodentable/fancy,
-/obj/item/storage/briefcase,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
-/area/desert_dam/building/administration/overseer_office)
"bPX" = (
/obj/structure/surface/table,
/obj/item/device/radio,
@@ -29709,15 +29318,6 @@
icon_state = "darkredcorners2"
},
/area/desert_dam/building/security/prison)
-"bQw" = (
-/obj/structure/closet/l3closet/security,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
-/area/desert_dam/building/security/armory)
"bQy" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -32786,10 +32386,6 @@
/obj/effect/blocker/toxic_water/Group_1,
/turf/open/gm/river/desert/deep/covered,
/area/desert_dam/exterior/river/riverside_central_south)
-"bZR" = (
-/obj/item/trash/semki,
-/turf/open/floor/plating,
-/area/desert_dam/interior/dam_interior/disposals)
"bZS" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -33726,12 +33322,6 @@
icon_state = "whiteyellow"
},
/area/desert_dam/interior/dam_interior/break_room)
-"ccE" = (
-/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
-/area/desert_dam/interior/dam_interior/break_room)
"ccF" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/random,
@@ -34045,18 +33635,6 @@
icon_state = "freezerfloor"
},
/area/desert_dam/building/security/prison)
-"cdH" = (
-/obj/structure/closet/secure_closet/injection,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/obj/item/reagent_container/ld50_syringe/choral,
-/turf/open/floor/prison,
-/area/desert_dam/building/security/execution_chamber)
"cdJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
@@ -34157,14 +33735,6 @@
dir = 6
},
/area/desert_dam/interior/caves/central_caves)
-"cdY" = (
-/obj/structure/surface/table/woodentable,
-/obj/structure/pipes/standard/simple/hidden/green,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
-/area/desert_dam/building/bar/bar)
"cdZ" = (
/obj/structure/surface/table/woodentable,
/turf/open/floor{
@@ -35445,16 +35015,6 @@
},
/turf/open/floor/plating,
/area/desert_dam/building/substation/west)
-"ciI" = (
-/obj/structure/surface/rack,
-/obj/item/stack/sheet/mineral/phoron{
- amount = 50
- },
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
-/area/desert_dam/building/substation/west)
"ciK" = (
/obj/structure/sink{
dir = 4;
@@ -35638,14 +35198,6 @@
icon_state = "whitegreen"
},
/area/desert_dam/building/medical/west_wing_hallway)
-"cju" = (
-/obj/structure/filingcabinet,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
-/area/desert_dam/interior/dam_interior/lobby)
"cjv" = (
/turf/closed/wall/r_wall,
/area/desert_dam/building/medical/morgue)
@@ -35981,13 +35533,6 @@
icon_state = "dirt2"
},
/area/desert_dam/exterior/river/riverside_south)
-"cky" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
-/area/desert_dam/building/warehouse/warehouse)
"ckA" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -36432,15 +35977,6 @@
icon_state = "whitegreen"
},
/area/desert_dam/building/medical/west_wing_hallway)
-"clO" = (
-/obj/structure/surface/table,
-/obj/item/device/autopsy_scanner,
-/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
-/area/desert_dam/building/medical/morgue)
"clP" = (
/obj/structure/machinery/optable,
/turf/open/floor/prison{
@@ -37521,12 +37057,6 @@
icon_state = "whitepurplecorner"
},
/area/desert_dam/building/medical/chemistry)
-"cpD" = (
-/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
-/area/desert_dam/building/medical/chemistry)
"cpE" = (
/obj/structure/machinery/power/port_gen/pacman,
/obj/effect/decal/cleanable/dirt,
@@ -38458,17 +37988,6 @@
icon_state = "bright_clean"
},
/area/desert_dam/interior/dam_interior/primary_tool_storage)
-"csN" = (
-/obj/structure/surface/table/reinforced,
-/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
-/area/desert_dam/interior/dam_interior/primary_tool_storage)
"csO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
@@ -39256,10 +38775,6 @@
icon_state = "whitegreen"
},
/area/desert_dam/building/medical/east_wing_hallway)
-"cvh" = (
-/obj/structure/closet/secure_closet/medical_doctor,
-/turf/open/floor/wood,
-/area/desert_dam/building/medical/CMO)
"cvi" = (
/turf/open/floor/wood,
/area/desert_dam/building/medical/CMO)
@@ -39368,14 +38883,6 @@
icon_state = "darkyellow2"
},
/area/desert_dam/building/substation/west)
-"cvC" = (
-/obj/structure/surface/table,
-/obj/item/folder/yellow,
-/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
-/area/desert_dam/building/substation/west)
"cvD" = (
/obj/structure/stairs,
/obj/structure/platform{
@@ -39723,16 +39230,6 @@
icon_state = "whitegreen"
},
/area/desert_dam/building/medical/lobby)
-"cwI" = (
-/obj/structure/surface/table/reinforced,
-/obj/structure/machinery/door/window/brigdoor/northleft{
- dir = 8
- },
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
-/area/desert_dam/building/medical/lobby)
"cwJ" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -40274,17 +39771,6 @@
icon_state = "whitered"
},
/area/desert_dam/building/medical/surgery_room_one)
-"cyj" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/item/storage/box/gloves{
- pixel_x = -5;
- pixel_y = -5
- },
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
-/area/desert_dam/building/medical/surgery_room_one)
"cyk" = (
/turf/closed/wall,
/area/desert_dam/building/medical/surgery_room_one)
@@ -40310,17 +39796,6 @@
icon_state = "whitered"
},
/area/desert_dam/building/medical/surgery_room_two)
-"cyo" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/item/storage/box/gloves{
- pixel_x = -5;
- pixel_y = -5
- },
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
-/area/desert_dam/building/medical/surgery_room_two)
"cyp" = (
/turf/closed/wall,
/area/desert_dam/building/medical/surgery_room_two)
@@ -40335,13 +39810,6 @@
},
/turf/open/floor/wood,
/area/desert_dam/building/medical/CMO)
-"cys" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/structure/filingcabinet,
-/turf/open/floor/wood,
-/area/desert_dam/building/medical/CMO)
"cyt" = (
/obj/structure/largecrate/random,
/turf/open/floor{
@@ -41017,13 +40485,6 @@
"cAB" = (
/turf/closed/wall,
/area/desert_dam/building/medical/office1)
-"cAC" = (
-/obj/structure/closet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
-/area/desert_dam/building/medical/office2)
"cAD" = (
/obj/structure/machinery/computer/med_data,
/turf/open/floor/prison{
@@ -41031,13 +40492,6 @@
icon_state = "whitered"
},
/area/desert_dam/building/medical/office1)
-"cAE" = (
-/obj/structure/closet/secure_closet/medical_doctor,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
-/area/desert_dam/building/medical/office1)
"cAF" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
@@ -41049,22 +40503,6 @@
"cAG" = (
/turf/closed/wall,
/area/desert_dam/building/medical/office2)
-"cAH" = (
-/obj/structure/machinery/power/apc{
- dir = 4;
- pixel_x = 28;
- start_charge = 0
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
-/area/desert_dam/building/medical/emergency_room)
"cAI" = (
/obj/structure/machinery/computer/med_data,
/turf/open/floor/prison{
@@ -42126,14 +41564,6 @@
dir = 9
},
/area/desert_dam/exterior/river/riverside_east)
-"cDT" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/fancy/cigarettes/kpack,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10
- },
-/area/desert_dam/interior/dam_interior/CE_office)
"cDU" = (
/obj/structure/bed/chair{
dir = 8
@@ -43767,13 +43197,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/desert_dam/building/medical/east_wing_hallway)
-"cIM" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
-/area/desert_dam/building/medical/virology_wing)
"cIN" = (
/obj/structure/machinery/computer/crew,
/turf/open/floor/prison{
@@ -44266,18 +43689,6 @@
/obj/effect/decal/sand_overlay/sand1/corner1,
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
-"cKt" = (
-/obj/structure/surface/table/reinforced,
-/obj/item/storage/box/masks,
-/obj/item/storage/box/gloves{
- pixel_x = 6;
- pixel_y = 10
- },
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
-/area/desert_dam/building/medical/treatment_room)
"cKu" = (
/obj/structure/bed/chair/office/light{
dir = 1
@@ -44552,16 +43963,6 @@
icon_state = "whitegreenfull"
},
/area/desert_dam/building/medical/virology_wing)
-"cLr" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
-/area/desert_dam/building/medical/virology_wing)
"cLs" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/floor/prison{
@@ -45948,10 +45349,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_cargo)
-"cQd" = (
-/obj/item/trash/cheesie,
-/turf/open/floor/interior/tatami,
-/area/desert_dam/building/bar/bar)
"cQe" = (
/obj/structure/bed/chair/wood/normal{
dir = 1
@@ -45995,14 +45392,6 @@
},
/turf/open/asphalt,
/area/desert_dam/building/warehouse/warehouse)
-"cQl" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
-/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cQm" = (
/turf/open/asphalt{
icon_state = "tile"
@@ -47631,6 +47020,25 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/valley_civilian)
+"cWK" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/phoron{
+ amount = 25
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 30;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/storage/briefcase/inflatable,
+/turf/open/floor/prison{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/desert_dam/interior/dam_interior/atmos_storage)
"cWN" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
@@ -48934,16 +48342,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/central_tunnel)
-"dcV" = (
-/obj/structure/closet/crate/hydroponics/prespawned,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/desert_dam/building/hydroponics/hydroponics_storage)
"dcW" = (
/obj/structure/closet/crate/hydroponics/prespawned,
/turf/open/floor{
@@ -49438,12 +48836,6 @@
icon_state = "sterile_white"
},
/area/desert_dam/building/cafeteria/cafeteria)
-"deH" = (
-/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
-/area/desert_dam/building/cafeteria/cafeteria)
"deI" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/prison{
@@ -49799,13 +49191,6 @@
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/prison,
/area/desert_dam/building/hydroponics/hydroponics)
-"dfU" = (
-/obj/structure/surface/table,
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/prison,
-/area/desert_dam/building/hydroponics/hydroponics)
"dga" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
@@ -49922,13 +49307,6 @@
icon_state = "floor_marked"
},
/area/desert_dam/building/warehouse/loading)
-"dgt" = (
-/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
-/area/desert_dam/building/warehouse/loading)
"dgu" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
@@ -50153,6 +49531,22 @@
/obj/structure/window/framed/hangar/reinforced,
/turf/open/floor/plating,
/area/desert_dam/building/water_treatment_one/purification)
+"dhL" = (
+/obj/structure/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28;
+ start_charge = 0
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/surface/table/reinforced,
+/turf/open/floor/prison{
+ dir = 4;
+ icon_state = "whitegreen"
+ },
+/area/desert_dam/building/medical/emergency_room)
"dhT" = (
/obj/effect/decal/sand_overlay/sand2,
/obj/effect/decal/cleanable/dirt,
@@ -51305,13 +50699,6 @@
icon_state = "dark2"
},
/area/desert_dam/building/water_treatment_one/lobby)
-"dsa" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
-/area/desert_dam/building/water_treatment_one/lobby)
"dsb" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -51359,6 +50746,14 @@
dir = 1
},
/area/desert_dam/exterior/river/riverside_central_south)
+"dsl" = (
+/obj/structure/surface/table/woodentable,
+/obj/structure/pipes/standard/simple/hidden/green,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor{
+ icon_state = "grimy"
+ },
+/area/desert_dam/building/bar/bar)
"dsA" = (
/turf/open/floor/prison{
dir = 8;
@@ -52139,6 +51534,12 @@
name = "reinforced metal wall"
},
/area/desert_dam/building/water_treatment_one/breakroom)
+"dye" = (
+/obj/structure/surface/rack,
+/turf/open/floor/prison{
+ icon_state = "sterile_white"
+ },
+/area/desert_dam/interior/dam_interior/workshop)
"dyi" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -52196,16 +51597,6 @@
},
/turf/open/floor/prison,
/area/desert_dam/building/dorms/hallway_northwing)
-"dyt" = (
-/obj/structure/closet/lasertag/blue,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
-/area/desert_dam/building/dorms/pool)
"dyS" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
@@ -52314,12 +51705,6 @@
icon_state = "freezerfloor"
},
/area/desert_dam/building/water_treatment_one/equipment)
-"dzj" = (
-/obj/structure/closet/l3closet/virology,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
-/area/desert_dam/building/water_treatment_one/equipment)
"dzk" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal4"
@@ -52909,11 +52294,6 @@
icon_state = "tile"
},
/area/desert_dam/exterior/valley/south_valley_dam)
-"dCw" = (
-/obj/structure/surface/table/almayer,
-/obj/item/spacecash/c10,
-/turf/open/floor/wood,
-/area/desert_dam/building/medical/break_room)
"dCy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
@@ -53847,15 +53227,6 @@
icon_state = "sterile_white"
},
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
-"dHs" = (
-/obj/structure/surface/table,
-/obj/item/clothing/head/welding,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
-/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dHt" = (
/turf/open/floor/coagulation{
icon_state = "1,1"
@@ -54227,19 +53598,6 @@
icon_state = "blue"
},
/area/desert_dam/building/dorms/pool)
-"dIP" = (
-/obj/structure/closet/athletic_mixed,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
-/area/desert_dam/building/dorms/pool)
"dIQ" = (
/obj/item/clothing/under/shorts/red,
/obj/structure/surface/rack,
@@ -58671,6 +58029,17 @@
icon_state = "bright_clean2"
},
/area/desert_dam/building/dorms/restroom)
+"dYU" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/storage/box/gloves{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/turf/open/floor/prison{
+ dir = 5;
+ icon_state = "whitered"
+ },
+/area/desert_dam/building/medical/surgery_room_one)
"dYX" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison{
@@ -58790,12 +58159,6 @@
icon_state = "wood"
},
/area/desert_dam/building/dorms/hallway_westwing)
-"dZT" = (
-/obj/structure/closet/athletic_mixed,
-/turf/open/floor{
- icon_state = "wood"
- },
-/area/desert_dam/building/dorms/hallway_westwing)
"dZU" = (
/obj/structure/surface/table,
/turf/open/floor/prison{
@@ -59084,12 +58447,6 @@
icon_state = "red"
},
/area/desert_dam/building/water_treatment_one/lobby)
-"ebv" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/prison,
-/area/desert_dam/building/water_treatment_one/control_room)
"ebx" = (
/obj/structure/machinery/light{
dir = 1
@@ -59577,6 +58934,13 @@
},
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_civilian)
+"edE" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/prison{
+ dir = 9;
+ icon_state = "whitegreen"
+ },
+/area/desert_dam/building/medical/virology_wing)
"edJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Water Treatment Foyer"
@@ -60130,6 +59494,17 @@
icon_state = "tile"
},
/area/desert_dam/exterior/valley/valley_hydro)
+"ejB" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/wood,
+/area/desert_dam/building/administration/overseer_office)
+"ejL" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/desert_dam/building/water_treatment_one/lobby)
"ejR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
@@ -60243,6 +59618,13 @@
/obj/structure/flora/grass/tallgrass/desert,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/bar_valley_dam)
+"eJp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stool,
+/turf/open/floor/prison{
+ icon_state = "bright_clean2"
+ },
+/area/desert_dam/building/warehouse/warehouse)
"eKN" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison{
@@ -60250,6 +59632,13 @@
icon_state = "cell_stripe"
},
/area/desert_dam/interior/dam_interior/hanger)
+"eLk" = (
+/obj/structure/closet/crate,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "darkpurple2"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"eNU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/floor/prison{
@@ -60289,6 +59678,16 @@
icon_state = "green"
},
/area/desert_dam/building/dorms/hallway_northwing)
+"eXc" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/prison{
+ dir = 9;
+ icon_state = "darkbrown2"
+ },
+/area/desert_dam/building/mining/workshop_foyer)
"eXM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -60356,6 +59755,16 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
+"feh" = (
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{
+ pixel_x = 32;
+ shuttleId = "trijentshuttle22"
+ },
+/turf/open/floor/prison{
+ dir = 4;
+ icon_state = "darkbrown2"
+ },
+/area/desert_dam/building/warehouse/loading)
"feU" = (
/turf/open/asphalt/cement_sunbleached{
icon_state = "cement_sunbleached15"
@@ -60398,6 +59807,12 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
+"foO" = (
+/obj/structure/closet/athletic_mixed,
+/turf/open/floor{
+ icon_state = "wood"
+ },
+/area/desert_dam/building/dorms/hallway_westwing)
"fpu" = (
/turf/open/asphalt/cement_sunbleached{
icon_state = "cement_sunbleached9"
@@ -60443,6 +59858,15 @@
icon_state = "wood"
},
/area/desert_dam/building/dorms/hallway_westwing)
+"ftR" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ icon_state = "sterile_white"
+ },
+/area/desert_dam/interior/dam_interior/workshop)
"fxs" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal6"
@@ -60455,6 +59879,13 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/south_valley_dam)
+"fyI" = (
+/obj/structure/surface/table,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/desert_dam/building/water_treatment_one/lobby)
"fyO" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/prison{
@@ -60568,6 +59999,20 @@
icon_state = "sterile_white"
},
/area/desert_dam/building/cafeteria/cafeteria)
+"fTF" = (
+/obj/structure/surface/table,
+/turf/open/floor{
+ icon_state = "dark2"
+ },
+/area/desert_dam/building/administration/archives)
+"fUu" = (
+/obj/structure/surface/table,
+/obj/item/folder/yellow,
+/obj/structure/machinery/light,
+/turf/open/floor/prison{
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/building/substation/west)
"fUO" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
@@ -60683,6 +60128,10 @@
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/desert/rock,
/area/desert_dam/interior/caves/central_caves)
+"glU" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/wood,
+/area/desert_dam/building/warehouse/breakroom)
"gmZ" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "warehouse_dam_3";
@@ -60721,6 +60170,13 @@
/obj/structure/prop/dam/large_boulder/boulder1,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
+"gps" = (
+/obj/structure/closet/secure_closet/medical_doctor,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "whitered"
+ },
+/area/desert_dam/building/medical/office1)
"gpZ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/desert/rock/deep{
@@ -60792,6 +60248,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/sandstone/runed,
/area/desert_dam/interior/caves/temple)
+"gDT" = (
+/obj/docking_port/stationary/trijent_elevator/occupied{
+ id = "trijent_lz2";
+ name = "Lz2 Elevator";
+ airlock_area = /area/shuttle/trijent_shuttle/lz2;
+ elevator_network = "B";
+ roundstart_template = /datum/map_template/shuttle/trijent_elevator/B
+ },
+/turf/open/gm/empty,
+/area/shuttle/trijent_shuttle/lz2)
"gEj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -60799,6 +60265,12 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
+"gEp" = (
+/obj/structure/surface/table,
+/turf/open/floor{
+ icon_state = "whiteyellow"
+ },
+/area/desert_dam/interior/dam_interior/break_room)
"gFr" = (
/obj/structure/machinery/colony_floodlight,
/turf/open/asphalt/cement_sunbleached{
@@ -60808,6 +60280,15 @@
"gGC" = (
/turf/closed/wall/mineral/sandstone/runed/decor,
/area/desert_dam/interior/caves/temple)
+"gIQ" = (
+/obj/structure/surface/table,
+/obj/item/clothing/head/welding,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "sterile_white"
+ },
+/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"gIS" = (
/obj/structure/stairs/perspective{
color = "#b29082";
@@ -60965,13 +60446,6 @@
icon_state = "tile"
},
/area/desert_dam/exterior/valley/south_valley_dam)
-"het" = (
-/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
-/area/desert_dam/building/water_treatment_one/lobby)
"heR" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor{
@@ -61048,6 +60522,12 @@
icon_state = "cement_sunbleached1"
},
/area/desert_dam/exterior/valley/south_valley_dam)
+"hsx" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/desert_dam/building/water_treatment_one/control_room)
"hvG" = (
/turf/open/desert/dirt{
dir = 4;
@@ -61133,6 +60613,18 @@
},
/turf/open/gm/river/desert/deep/covered,
/area/desert_dam/exterior/river/riverside_south)
+"hGn" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/wood,
+/area/desert_dam/building/administration/overseer_office)
+"hHz" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/interior/wood,
+/area/desert_dam/building/security/marshals_office)
+"hIy" = (
+/obj/structure/surface/table,
+/turf/open/floor/prison,
+/area/desert_dam/building/water_treatment_two/floodgate_control)
"hIO" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal4"
@@ -61203,10 +60695,6 @@
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
-"hWz" = (
-/obj/structure/surface/table/reinforced,
-/turf/open/floor/wood,
-/area/desert_dam/building/administration/overseer_office)
"ibg" = (
/obj/structure/machinery/light{
dir = 4
@@ -61239,6 +60727,11 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
+"ict" = (
+/obj/structure/surface/table/almayer,
+/obj/item/spacecash/c10,
+/turf/open/floor/wood,
+/area/desert_dam/building/medical/break_room)
"icM" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal2"
@@ -61288,10 +60781,18 @@
"ioA" = (
/turf/open/gm/river/desert/shallow,
/area/desert_dam/interior/caves/temple)
-"ipQ" = (
-/obj/docking_port/stationary/trijent_elevator/omega,
-/turf/open/gm/empty,
-/area/shuttle/trijent_shuttle/omega)
+"ioO" = (
+/obj/structure/surface/table/reinforced,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "whitegreenfull"
+ },
+/area/desert_dam/building/medical/treatment_room)
"iqs" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/liquidfood,
@@ -61407,6 +60908,13 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/valley_wilderness)
+"iHo" = (
+/obj/structure/filingcabinet,
+/turf/open/floor{
+ dir = 1;
+ icon_state = "darkred2"
+ },
+/area/desert_dam/building/administration/lobby)
"iNg" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 2;
@@ -61433,6 +60941,13 @@
icon_state = "cement_sunbleached15"
},
/area/desert_dam/exterior/valley/valley_hydro)
+"iRs" = (
+/obj/structure/surface/table/reinforced,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "darkpurple2"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_biology)
"iRU" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
@@ -61548,6 +61063,21 @@
icon_state = "bright_clean"
},
/area/desert_dam/building/mining/workshop)
+"juT" = (
+/obj/structure/surface/table,
+/obj/item/ashtray/bronze{
+ pixel_x = -7
+ },
+/obj/item/clothing/mask/cigarette,
+/obj/item/clothing/mask/cigarette{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteyellow"
+ },
+/area/desert_dam/interior/dam_interior/garage)
"jvZ" = (
/obj/structure/platform{
dir = 1
@@ -61575,6 +61105,20 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/valley_crashsite)
+"jyu" = (
+/obj/docking_port/stationary/trijent_elevator/occupied{
+ id = "trijent_lz1";
+ name = "Lz1 Elevator";
+ elevator_network = "A";
+ airlock_area = /area/shuttle/trijent_shuttle/lz1;
+ roundstart_template = /datum/map_template/shuttle/trijent_elevator/A
+ },
+/turf/open/gm/empty,
+/area/shuttle/trijent_shuttle/lz1)
+"jAk" = (
+/obj/structure/surface/table/reinforced,
+/turf/open/floor/wood,
+/area/desert_dam/building/administration/overseer_office)
"jAS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/asphalt/cement_sunbleached{
@@ -61613,6 +61157,23 @@
icon_state = "tile"
},
/area/desert_dam/exterior/valley/valley_telecoms)
+"jMe" = (
+/obj/structure/bed/stool,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/dam_interior/smes_backup)
+"jMG" = (
+/obj/docking_port/stationary/trijent_elevator/empty{
+ id = "trijent_engineering";
+ name = "Engineering Elevator";
+ airlock_exit = "east";
+ airlock_area = /area/shuttle/trijent_shuttle/engi;
+ elevator_network = "A"
+ },
+/turf/open/gm/empty,
+/area/shuttle/trijent_shuttle/engi)
"jMT" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
@@ -61631,6 +61192,22 @@
icon_state = "cement_sunbleached12"
},
/area/desert_dam/exterior/valley/valley_hydro)
+"jPl" = (
+/obj/structure/closet/l3closet/security,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ icon_state = "floor_marked"
+ },
+/area/desert_dam/building/security/armory)
+"jQS" = (
+/obj/structure/closet,
+/turf/open/floor/prison{
+ dir = 5;
+ icon_state = "whitered"
+ },
+/area/desert_dam/building/medical/office2)
"jSS" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal2"
@@ -61645,6 +61222,13 @@
icon_state = "floor_plate"
},
/area/desert_dam/interior/dam_interior/hanger)
+"jTZ" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/desert_dam/building/water_treatment_two/lobby)
"jVa" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
@@ -61665,6 +61249,10 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
+"jWV" = (
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/interior/wood/alt,
+/area/desert_dam/building/security/detective)
"jXv" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal2"
@@ -61801,6 +61389,12 @@
icon_state = "cement_sunbleached13"
},
/area/desert_dam/exterior/valley/bar_valley_dam)
+"kIB" = (
+/obj/structure/closet/l3closet/virology,
+/turf/open/floor{
+ icon_state = "freezerfloor"
+ },
+/area/desert_dam/building/water_treatment_one/equipment)
"kIP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/asphalt/cement_sunbleached,
@@ -61991,6 +61585,12 @@
/obj/structure/flora/grass/desert/lightgrass_8,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
+"lsn" = (
+/obj/structure/surface/table,
+/turf/open/floor{
+ icon_state = "whiteyellow"
+ },
+/area/desert_dam/building/water_treatment_one/breakroom)
"ltE" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -62029,6 +61629,12 @@
icon_state = "floor_marked"
},
/area/desert_dam/building/cafeteria/loading)
+"lDf" = (
+/obj/structure/surface/table,
+/turf/open/floor/prison{
+ dir = 10
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_RND)
"lDT" = (
/obj/structure/flora/grass/desert/lightgrass_3,
/turf/open/desert/dirt,
@@ -62167,15 +61773,6 @@
icon_state = "cement_sunbleached18"
},
/area/desert_dam/exterior/valley/valley_labs)
-"mej" = (
-/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{
- pixel_x = 32
- },
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
-/area/desert_dam/building/warehouse/loading)
"meN" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal2"
@@ -62205,12 +61802,6 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
-"mhU" = (
-/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
-/area/desert_dam/interior/dam_interior/workshop)
"mkd" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -62282,6 +61873,10 @@
icon_state = "multi_tiles"
},
/area/desert_dam/interior/caves/temple)
+"mvZ" = (
+/obj/item/trash/semki,
+/turf/open/floor/plating,
+/area/desert_dam/interior/dam_interior/disposals)
"myx" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/floor/prison{
@@ -62366,6 +61961,20 @@
icon_state = "cement_sunbleached12"
},
/area/desert_dam/exterior/telecomm/lz2_storage)
+"mIc" = (
+/obj/structure/surface/table/reinforced,
+/obj/structure/machinery/door/window/brigdoor/westleft{
+ name = "Security Desk"
+ },
+/obj/structure/machinery/door/window/eastright{
+ name = "Security Desk"
+ },
+/obj/item/tool/stamp,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/prison{
+ dir = 10
+ },
+/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"mKs" = (
/turf/closed/wall/rock/orange,
/area/desert_dam/exterior/valley/valley_telecoms)
@@ -62392,6 +62001,18 @@
icon_state = "sterile_white"
},
/area/desert_dam/building/cafeteria/cafeteria)
+"mOP" = (
+/obj/structure/closet/secure_closet/injection,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/turf/open/floor/prison,
+/area/desert_dam/building/security/execution_chamber)
"mOS" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/asphalt/cement,
@@ -62487,6 +62108,13 @@
icon_state = "dirt2"
},
/area/desert_dam/exterior/valley/valley_crashsite)
+"nkj" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/prison{
+ dir = 4;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/dam_interior/garage)
"nlH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -62512,6 +62140,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
+"nnh" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/interior/wood,
+/area/desert_dam/building/security/marshals_office)
+"nor" = (
+/obj/structure/closet/secure_closet/medical_doctor,
+/turf/open/floor/wood,
+/area/desert_dam/building/medical/CMO)
"nsf" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal12"
@@ -62519,12 +62155,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
-"ntt" = (
-/obj/structure/closet/l3closet/security,
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
-/area/desert_dam/building/security/armory)
"nue" = (
/turf/open/desert/dirt{
dir = 6;
@@ -62555,10 +62185,20 @@
/obj/structure/desertdam/decals/road_edge,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
+"nAt" = (
+/obj/structure/surface/table,
+/obj/item/paper_bin,
+/obj/item/tool/pen,
+/turf/open/floor/prison,
+/area/desert_dam/building/water_treatment_one/floodgate_control)
"nCi" = (
/obj/item/stack/medical/advanced/ointment/predator,
/turf/open/desert/rock/deep/transition,
/area/desert_dam/interior/caves/temple)
+"nDM" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/wood,
+/area/desert_dam/building/warehouse/breakroom)
"nEM" = (
/turf/closed/wall/hangar{
name = "Elevator Shaft";
@@ -62626,6 +62266,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
+"nWT" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/clothing/suit/armor/vest/security,
+/turf/open/floor/prison{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"nXu" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal2"
@@ -62697,6 +62345,21 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_crashsite)
+"ogQ" = (
+/obj/structure/surface/table,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/desert_dam/building/hydroponics/hydroponics)
+"ohM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/fancy/cigarettes/kpack,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/prison{
+ dir = 10
+ },
+/area/desert_dam/interior/dam_interior/CE_office)
"oit" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/desert/dirt{
@@ -62775,6 +62438,36 @@
/obj/effect/decal/cleanable/liquid_fuel,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
+"oyp" = (
+/obj/effect/decal/sand_overlay/sand1/corner1{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{
+ pixel_y = 32;
+ shuttleId = "trijentshuttle22"
+ },
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "sterile_white"
+ },
+/area/desert_dam/exterior/valley/valley_medical)
+"oyr" = (
+/obj/structure/surface/table,
+/obj/item/stack/sheet/metal{
+ amount = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/dam_interior/smes_main)
"ozu" = (
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
@@ -62784,6 +62477,11 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
+"oAX" = (
+/obj/structure/surface/table/woodentable,
+/obj/item/ammo_magazine/shotgun/slugs,
+/turf/open/floor/interior/wood,
+/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"oBR" = (
/obj/structure/disposalpipe/segment,
/turf/open/asphalt,
@@ -62857,6 +62555,14 @@
icon_state = "cement_sunbleached15"
},
/area/desert_dam/exterior/valley/valley_hydro)
+"oUk" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/building/substation/northwest)
"oUr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
/turf/open/desert/dirt,
@@ -62933,10 +62639,6 @@
icon_state = "cement_sunbleached4"
},
/area/desert_dam/interior/caves/central_caves)
-"pif" = (
-/obj/docking_port/stationary/trijent_elevator/engineering,
-/turf/open/gm/empty,
-/area/shuttle/trijent_shuttle/engi)
"pij" = (
/turf/open/desert/dirt{
dir = 6;
@@ -62951,6 +62653,20 @@
/obj/structure/flora/grass/desert/lightgrass_1,
/turf/open/desert/dirt,
/area/desert_dam/exterior/telecomm/lz1_xenoflora)
+"pmt" = (
+/obj/structure/closet/secure_closet/medical_doctor,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "whitered"
+ },
+/area/desert_dam/building/medical/chemistry)
+"pnx" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/prison{
+ dir = 5;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/dam_interior/garage)
"poi" = (
/obj/structure/desertdam/decals/road_edge,
/obj/effect/decal/cleanable/dirt,
@@ -62969,13 +62685,6 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_cargo)
-"ppS" = (
-/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
-/area/desert_dam/building/medical/virology_isolation)
"puM" = (
/obj/structure/machinery/light{
dir = 1
@@ -63012,6 +62721,12 @@
icon_state = "darkyellow2"
},
/area/desert_dam/building/mining/workshop)
+"pwI" = (
+/obj/structure/filingcabinet,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/desert_dam/interior/dam_interior/office)
"pyP" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
@@ -63139,6 +62854,19 @@
icon_state = "cement_sunbleached3"
},
/area/desert_dam/exterior/valley/valley_civilian)
+"pPu" = (
+/obj/structure/closet/secure_closet/security,
+/turf/open/floor/prison{
+ dir = 9;
+ icon_state = "darkred2"
+ },
+/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
+"pRy" = (
+/obj/structure/closet/bombclosetsecurity,
+/turf/open/floor/prison{
+ icon_state = "darkredfull2"
+ },
+/area/desert_dam/building/security/staffroom)
"pSM" = (
/obj/effect/landmark/nightmare{
insert_tag = "purple-new-bridge"
@@ -63183,6 +62911,19 @@
icon_state = "cement_sunbleached14"
},
/area/desert_dam/exterior/valley/valley_crashsite)
+"qaH" = (
+/obj/structure/closet/athletic_mixed,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/desert_dam/building/dorms/pool)
"qbC" = (
/obj/structure/surface/table/woodentable,
/turf/open/floor/wood,
@@ -63198,6 +62939,20 @@
/obj/structure/flora/bush/desert,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
+"qgK" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
+"qiG" = (
+/obj/structure/surface/table,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "whitegreen"
+ },
+/area/desert_dam/building/medical/virology_isolation)
"qjg" = (
/turf/open/desert/rock/deep/transition{
dir = 6
@@ -63269,6 +63024,20 @@
icon_state = "cement_sunbleached13"
},
/area/desert_dam/exterior/valley/valley_labs)
+"quS" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/clothing/suit/armor/vest/security,
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
+"qwO" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/desert_dam/interior/dam_interior/office)
"qwZ" = (
/obj/structure/bed/chair,
/obj/effect/landmark/survivor_spawner,
@@ -63328,6 +63097,17 @@
icon_state = "cement_sunbleached18"
},
/area/desert_dam/exterior/valley/south_valley_dam)
+"qEl" = (
+/obj/structure/surface/table/reinforced,
+/obj/structure/pipes/standard/simple/hidden/green{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "bright_clean"
+ },
+/area/desert_dam/interior/dam_interior/primary_tool_storage)
"qEJ" = (
/obj/structure/desertdam/decals/road_edge,
/obj/effect/decal/cleanable/dirt,
@@ -63339,16 +63119,23 @@
/obj/structure/flora/grass/tallgrass/desert/corner,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
-"qHt" = (
-/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark2"
- },
-/area/desert_dam/building/administration/archives)
"qHF" = (
/obj/structure/flora/grass/desert/lightgrass_10,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/bar_valley_dam)
+"qHW" = (
+/obj/structure/surface/rack,
+/turf/open/floor/prison{
+ icon_state = "redcorner"
+ },
+/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
+"qIu" = (
+/obj/structure/surface/table/reinforced,
+/turf/open/floor/prison{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"qJI" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -63439,12 +63226,6 @@
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_one/control_room)
-"qYC" = (
-/obj/structure/filingcabinet,
-/turf/open/floor{
- icon_state = "dark2"
- },
-/area/desert_dam/building/administration/archives)
"ray" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/desertdam/decals/road_edge{
@@ -63514,6 +63295,13 @@
icon_state = "tile"
},
/area/desert_dam/exterior/valley/bar_valley_dam)
+"rnV" = (
+/obj/structure/surface/table,
+/turf/open/floor/prison{
+ dir = 9;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/building/substation/northeast)
"rob" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal7"
@@ -63561,10 +63349,6 @@
},
/turf/open/desert/rock/deep,
/area/desert_dam/interior/caves/temple)
-"rxS" = (
-/obj/docking_port/stationary/trijent_elevator/lz1,
-/turf/open/gm/empty,
-/area/shuttle/trijent_shuttle/lz1)
"ryG" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
/turf/open/floor/prison{
@@ -63596,6 +63380,16 @@
icon_state = "darkyellow2"
},
/area/desert_dam/building/mining/workshop)
+"rBL" = (
+/obj/structure/surface/table/reinforced,
+/obj/structure/machinery/door/window/brigdoor/northleft{
+ dir = 8
+ },
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "bright_clean2"
+ },
+/area/desert_dam/building/medical/lobby)
"rBP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
@@ -63613,12 +63407,6 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
-"rEH" = (
-/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
-/area/desert_dam/building/water_treatment_one/breakroom)
"rFi" = (
/turf/open/gm/empty,
/area/shuttle/trijent_shuttle/lz2)
@@ -63672,6 +63460,18 @@
icon_state = "warning"
},
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
+"rNO" = (
+/obj/structure/surface/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "floor_plate"
+ },
+/area/desert_dam/building/security/lobby)
"rPp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -63781,21 +63581,6 @@
dir = 10
},
/area/desert_dam/interior/dam_interior/primary_tool_storage)
-"ser" = (
-/obj/structure/surface/table,
-/obj/item/ashtray/bronze{
- pixel_x = -7
- },
-/obj/item/clothing/mask/cigarette,
-/obj/item/clothing/mask/cigarette{
- pixel_x = 5;
- pixel_y = 6
- },
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
-/area/desert_dam/interior/dam_interior/garage)
"sfK" = (
/turf/open/floor{
icon_state = "white"
@@ -63806,6 +63591,15 @@
icon_state = "cement_sunbleached15"
},
/area/desert_dam/exterior/valley/south_valley_dam)
+"shZ" = (
+/obj/structure/surface/table,
+/obj/effect/spawner/random/tech_supply,
+/obj/item/handset,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_RND)
"sia" = (
/turf/open/desert/dirt{
icon_state = "desert_transition_corner1"
@@ -63871,6 +63665,12 @@
icon_state = "cement_sunbleached12"
},
/area/desert_dam/exterior/valley/valley_crashsite)
+"srU" = (
+/obj/structure/surface/table,
+/turf/open/floor{
+ icon_state = "wood"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ssy" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -63911,6 +63711,19 @@
icon_state = "cement_sunbleached4"
},
/area/desert_dam/exterior/valley/valley_hydro)
+"sBw" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/wood,
+/area/desert_dam/building/administration/office)
+"sCf" = (
+/obj/structure/surface/table/reinforced,
+/obj/structure/machinery/door/window/brigdoor/northleft{
+ dir = 8
+ },
+/turf/open/floor{
+ icon_state = "dark2"
+ },
+/area/desert_dam/building/security/prison)
"sDf" = (
/obj/effect/decal/cleanable/generic,
/turf/open/floor/prison{
@@ -64004,6 +63817,12 @@
"sUr" = (
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
+"sVj" = (
+/obj/structure/surface/table/reinforced,
+/turf/open/floor/prison{
+ icon_state = "sterile_white"
+ },
+/area/desert_dam/building/cafeteria/cafeteria)
"sWS" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
@@ -64087,6 +63906,16 @@
},
/turf/open/desert/rock/deep/transition,
/area/desert_dam/interior/caves/temple)
+"tfA" = (
+/obj/docking_port/stationary/trijent_elevator/empty{
+ id = "trijent_omega";
+ name = "Omega Elevator";
+ airlock_exit = "east";
+ airlock_area = /area/shuttle/trijent_shuttle/omega;
+ elevator_network = "B"
+ },
+/turf/open/gm/empty,
+/area/shuttle/trijent_shuttle/omega)
"thd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -64104,6 +63933,13 @@
/obj/structure/flora/grass/desert/heavygrass_4,
/turf/open/desert/dirt,
/area/desert_dam/exterior/telecomm/lz2_storage)
+"tjz" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "darkred2"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"tjX" = (
/obj/structure/flora/grass/desert/lightgrass_3,
/turf/open/desert/dirt,
@@ -64130,6 +63966,29 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
+"tos" = (
+/obj/structure/closet/secure_closet/security,
+/turf/open/floor{
+ dir = 1;
+ icon_state = "darkred2"
+ },
+/area/desert_dam/building/administration/lobby)
+"tpV" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/surface/table,
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "whitegreenfull"
+ },
+/area/desert_dam/building/medical/virology_wing)
+"trt" = (
+/obj/structure/closet/secure_closet/scientist,
+/turf/open/floor{
+ icon_state = "wood"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"trP" = (
/obj/structure/prop/dam/boulder/boulder1,
/turf/open/desert/dirt,
@@ -64152,6 +64011,10 @@
icon_state = "bright_clean"
},
/area/desert_dam/interior/dam_interior/garage)
+"tvi" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/wood,
+/area/desert_dam/building/administration/office)
"tyc" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal4"
@@ -64282,12 +64145,26 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/bar_valley_dam)
+"tWm" = (
+/obj/item/trash/cheesie,
+/turf/open/floor/interior/tatami,
+/area/desert_dam/building/bar/bar)
"tXS" = (
/turf/open/desert/dirt{
dir = 1;
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/south_valley_dam)
+"tYH" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/prison{
+ dir = 5;
+ icon_state = "darkbrown2"
+ },
+/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"tZQ" = (
/turf/closed/wall/r_wall,
/area/desert_dam/exterior/rock)
@@ -64369,6 +64246,19 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
+"uqu" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/surface/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/prison{
+ icon_state = "bright_clean2"
+ },
+/area/desert_dam/building/administration/control_room)
"uso" = (
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
@@ -64447,6 +64337,13 @@
},
/turf/open/gm/river/desert/shallow,
/area/desert_dam/interior/caves/temple)
+"uLl" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "darkred2"
+ },
+/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"uLr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -64514,6 +64411,12 @@
/obj/structure/flora/grass/tallgrass/desert,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_cargo)
+"uUB" = (
+/obj/structure/filingcabinet,
+/turf/open/floor{
+ icon_state = "dark2"
+ },
+/area/desert_dam/building/administration/archives)
"uVm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/asphalt/cement_sunbleached{
@@ -64582,6 +64485,12 @@
/obj/structure/fence,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
+"vlZ" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ icon_state = "floor_plate"
+ },
+/area/desert_dam/building/security/evidence)
"vnf" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -64650,12 +64559,23 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
+"vwv" = (
+/obj/structure/closet/secure_closet/RD,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_RND)
"vxt" = (
/obj/effect/landmark/survivor_spawner,
/turf/open/floor{
icon_state = "freezerfloor"
},
/area/desert_dam/building/water_treatment_one/breakroom)
+"vzd" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/interior/wood,
+/area/desert_dam/building/security/detective)
"vzj" = (
/turf/open/asphalt/cement_sunbleached{
icon_state = "cement_sunbleached18"
@@ -64744,6 +64664,12 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
+"vLa" = (
+/obj/structure/closet/l3closet/security,
+/turf/open/floor/prison{
+ icon_state = "floor_marked"
+ },
+/area/desert_dam/building/security/armory)
"vLd" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal11"
@@ -64755,6 +64681,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/shuttle/plating,
/area/desert_dam/interior/dam_interior/hanger)
+"vLS" = (
+/obj/structure/surface/table,
+/turf/open/floor/prison{
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"vMp" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -64880,10 +64812,30 @@
icon_state = "floor_marked"
},
/area/desert_dam/building/cafeteria/loading)
+"wla" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tech_supply,
+/obj/effect/spawner/random/tech_supply,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/building/substation/southwest)
"woy" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall/r_wall/bunker,
/area/desert_dam/interior/dam_interior/garage)
+"wpS" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/storage/box/gloves{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/turf/open/floor/prison{
+ dir = 5;
+ icon_state = "whitered"
+ },
+/area/desert_dam/building/medical/surgery_room_two)
"wpW" = (
/obj/structure/flora/grass/desert/lightgrass_6,
/turf/open/desert/dirt,
@@ -64931,6 +64883,26 @@
/obj/structure/desertdam/decals/road_edge,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
+"wvL" = (
+/obj/structure/closet/lasertag/blue,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/desert_dam/building/dorms/pool)
+"wxV" = (
+/obj/structure/closet/crate/hydroponics/prespawned,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/desert_dam/building/hydroponics/hydroponics_storage)
"wya" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
@@ -64957,6 +64929,16 @@
},
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel)
+"wzC" = (
+/obj/structure/surface/rack,
+/obj/item/stack/sheet/mineral/phoron{
+ amount = 50
+ },
+/turf/open/floor/plating{
+ dir = 4;
+ icon_state = "warnplate"
+ },
+/area/desert_dam/building/substation/west)
"wAP" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal9"
@@ -65004,6 +64986,13 @@
icon_state = "tile"
},
/area/desert_dam/exterior/valley/south_valley_dam)
+"wOY" = (
+/obj/structure/surface/rack,
+/turf/open/floor/prison{
+ dir = 10;
+ icon_state = "bright_clean"
+ },
+/area/desert_dam/building/warehouse/loading)
"wPb" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
@@ -65053,6 +65042,13 @@
icon_state = "cement_sunbleached2"
},
/area/desert_dam/exterior/valley/valley_hydro)
+"wSB" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "darkyellow2"
+ },
+/area/desert_dam/interior/dam_interior/primary_tool_storage)
"wTP" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/mineral/phoron{
@@ -65237,6 +65233,13 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/valley/valley_northwest)
+"xrF" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ dir = 1;
+ icon_state = "darkbrown2"
+ },
+/area/desert_dam/building/warehouse/warehouse)
"xss" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
dir = 4;
@@ -65277,6 +65280,12 @@
icon_state = "cement_sunbleached4"
},
/area/desert_dam/exterior/valley/valley_telecoms)
+"xwq" = (
+/obj/structure/surface/table/reinforced,
+/turf/open/floor{
+ icon_state = "whitepurplecorner"
+ },
+/area/desert_dam/building/medical/chemistry)
"xxv" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
@@ -65292,6 +65301,13 @@
icon_state = "desert_transition_edge1"
},
/area/desert_dam/exterior/telecomm/lz1_valley)
+"xyt" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/filingcabinet,
+/turf/open/floor/wood,
+/area/desert_dam/building/medical/CMO)
"xzc" = (
/obj/structure/surface/table,
/turf/open/floor{
@@ -65358,12 +65374,6 @@
"xIC" = (
/turf/open/desert/dirt,
/area/desert_dam/exterior/telecomm/lz2_storage)
-"xJG" = (
-/obj/structure/surface/table,
-/obj/item/paper_bin,
-/obj/item/tool/pen,
-/turf/open/floor/prison,
-/area/desert_dam/building/water_treatment_one/floodgate_control)
"xKx" = (
/obj/effect/vehicle_spawner/van/decrepit,
/obj/effect/decal/cleanable/dirt,
@@ -65385,6 +65395,14 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/river/riverside_central_north)
+"xNc" = (
+/obj/structure/filingcabinet,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellow"
+ },
+/area/desert_dam/interior/dam_interior/lobby)
"xNB" = (
/obj/structure/machinery/floodlight/landing,
/obj/structure/machinery/landinglight/ds1{
@@ -65408,15 +65426,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
-"xRf" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tech_supply,
-/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
+"xQX" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/storage/briefcase,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "carpet13-5"
},
-/area/desert_dam/building/substation/southwest)
+/area/desert_dam/building/administration/overseer_office)
"xTH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
@@ -65461,6 +65478,15 @@
dir = 8
},
/area/desert_dam/exterior/valley/valley_telecoms)
+"yaK" = (
+/obj/structure/surface/table,
+/obj/item/device/autopsy_scanner,
+/obj/structure/pipes/standard/simple/hidden/green,
+/turf/open/floor/prison{
+ dir = 8;
+ icon_state = "sterile_white"
+ },
+/area/desert_dam/building/medical/morgue)
"ybA" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal12"
@@ -67829,7 +67855,7 @@ cmm
cte
ctB
cuA
-cvC
+fUu
cgm
cgm
cgm
@@ -68052,7 +68078,7 @@ dTs
cgm
cic
cic
-ciI
+wzC
cgm
cku
cml
@@ -71015,7 +71041,7 @@ bzi
bzi
bMw
bLW
-mhU
+dye
bLW
bNZ
bLW
@@ -71497,8 +71523,8 @@ bVb
bLU
dTs
arF
-aRX
-aXf
+pnx
+nkj
ylT
glz
iCw
@@ -71966,7 +71992,7 @@ bLU
dTs
dTs
arF
-ser
+juT
ixe
scv
scv
@@ -72418,7 +72444,7 @@ bSg
bJf
bKp
byo
-bMa
+ftR
bLW
bLW
bLW
@@ -73161,7 +73187,7 @@ aSU
aVp
bdz
bjj
-blX
+rNO
bnF
bpi
bqn
@@ -73412,7 +73438,7 @@ bGE
bIW
bNE
bNF
-bPI
+sCf
bNF
bNE
bNF
@@ -73636,7 +73662,7 @@ bqx
bom
bsm
aWK
-brm
+vlZ
bpN
bBb
bDE
@@ -73839,7 +73865,7 @@ bLW
bXS
bYy
bYY
-bZR
+mvZ
ccy
cbe
cbO
@@ -74166,7 +74192,7 @@ dTs
dTs
dTs
bvA
-cky
+xrF
cmS
cnV
cmS
@@ -74763,7 +74789,7 @@ bzB
bKr
bEr
bOR
-bPT
+qwO
bQZ
bRU
bOR
@@ -74795,9 +74821,9 @@ chG
ceA
ceA
aVB
-aXN
+vzd
aZL
-bdT
+jWV
bjR
aXM
aVB
@@ -74886,7 +74912,7 @@ cYG
dbe
ddL
deW
-aMQ
+eJp
aNo
aNK
bvA
@@ -74997,7 +75023,7 @@ bHS
bKr
bEp
bRk
-bPU
+pwI
bRX
bRV
bRk
@@ -75497,7 +75523,7 @@ chG
ceA
bnv
aVM
-aXX
+hHz
aZM
beo
bjS
@@ -75731,7 +75757,7 @@ chG
ceA
ceA
aVM
-aXZ
+nnh
aZM
bes
bkG
@@ -77303,7 +77329,7 @@ fmP
fmP
fmP
fmP
-rxS
+jyu
lcj
dTs
dTs
@@ -77722,7 +77748,7 @@ aOc
aOc
aRg
aRE
-aSf
+oUk
bFq
aTh
aOc
@@ -77736,7 +77762,7 @@ aWl
aWl
aex
aYL
-afr
+uqu
bdE
bdE
aYv
@@ -78327,7 +78353,7 @@ bHI
bJI
bJP
bNw
-bQw
+jPl
bSx
bRF
bYq
@@ -78561,7 +78587,7 @@ bHJ
bJI
bJS
bNw
-ntt
+vLa
bSx
bRF
bRF
@@ -78795,7 +78821,7 @@ bHK
bJI
bJS
bNw
-ntt
+vLa
bSx
bRF
bYr
@@ -79039,7 +79065,7 @@ bNw
bZw
bZw
bZw
-cdH
+mOP
bZJ
bZJ
bZw
@@ -79133,7 +79159,7 @@ dTs
dTs
dTs
aVm
-aVJ
+tvi
aWq
aWq
aWq
@@ -79889,7 +79915,7 @@ bpB
bqL
brN
blZ
-btx
+tYH
boB
boB
bxn
@@ -80069,7 +80095,7 @@ dTs
dTs
dTs
aVm
-aVN
+sBw
aWq
aWq
aWq
@@ -80161,7 +80187,7 @@ dCD
dKl
cbk
cbW
-ccE
+gEp
bTt
mAZ
bGn
@@ -80190,7 +80216,7 @@ dTs
dTs
dTs
aNH
-bui
+pRy
bvT
byQ
byQ
@@ -80781,7 +80807,7 @@ brK
bsE
aZb
aZP
-bap
+iHo
dJN
aZT
bbi
@@ -80850,7 +80876,7 @@ bRy
bQe
cCQ
hmA
-cDT
+ohM
cGA
bRy
bOY
@@ -81015,7 +81041,7 @@ aYG
bsL
btJ
aZP
-baq
+tos
dJP
dJY
bbj
@@ -81184,7 +81210,7 @@ drO
czv
cPG
boP
-bsR
+nDM
buc
cmG
cnq
@@ -81418,7 +81444,7 @@ drT
cDc
cPG
boP
-bua
+glU
buc
cmL
cnu
@@ -81446,7 +81472,7 @@ cZx
cZx
cZx
cZx
-mej
+feh
cZx
cXa
cXa
@@ -81473,7 +81499,7 @@ dTs
dTs
dTs
aVm
-aVN
+sBw
aWq
aWq
aXs
@@ -81675,7 +81701,7 @@ cIq
cVU
dfK
cIq
-dgt
+wOY
cIq
dfK
cZB
@@ -81727,7 +81753,7 @@ buM
buM
bcq
bdf
-bdB
+ejB
bdC
bdC
beE
@@ -81920,7 +81946,7 @@ rFi
rFi
rFi
rFi
-aRB
+gDT
nEM
acu
"}
@@ -81985,10 +82011,10 @@ rTV
dTs
bkU
bkU
-bma
+pPu
bmr
bmr
-bnm
+uLl
bnX
bkU
avt
@@ -82199,7 +82225,7 @@ bAE
bdZ
duZ
byp
-bPW
+xQX
bdC
bfy
bdg
@@ -82435,7 +82461,7 @@ dKc
beH
bfa
bdC
-hWz
+jAk
bdg
bgg
aoG
@@ -82669,7 +82695,7 @@ bBl
beI
bdC
bdC
-bfA
+hGn
bdf
bgg
aoG
@@ -82688,7 +82714,7 @@ asq
bkU
blC
bmd
-aSz
+mIc
bkU
bUQ
bkU
@@ -83120,7 +83146,7 @@ aYs
aYr
aYr
aZC
-qYC
+uUB
aZY
aZY
aZY
@@ -83825,7 +83851,7 @@ aZC
aZZ
bav
aZY
-qHt
+fTF
aZC
aYm
bpz
@@ -83880,11 +83906,11 @@ bDc
cbl
cbU
bPx
-bIb
+wSB
ckL
ciT
cqI
-csN
+qEl
ciT
ckL
cwT
@@ -84059,7 +84085,7 @@ aZC
baa
baw
aZY
-qHt
+fTF
aZC
buZ
brK
@@ -84114,7 +84140,7 @@ bFQ
cbl
cbU
bPx
-bIb
+wSB
bJm
ciT
ciT
@@ -84155,7 +84181,7 @@ adw
ahW
aYh
ccI
-cdY
+dsl
ceM
chK
cmp
@@ -84290,7 +84316,7 @@ aeM
akt
dTs
aZC
-qYC
+uUB
aZY
aZY
aZY
@@ -84348,7 +84374,7 @@ bWc
cbm
cbU
bGX
-bIc
+bxC
ckL
bHa
ciT
@@ -84524,7 +84550,7 @@ aeM
dTs
dTs
aZC
-qYC
+uUB
aZY
aZY
aZY
@@ -84629,7 +84655,7 @@ cgy
cij
cxg
cFN
-cQd
+tWm
cij
cxi
cQT
@@ -84758,7 +84784,7 @@ aeM
aez
akv
aZC
-qYC
+uUB
aZY
aZY
aZY
@@ -84992,7 +85018,7 @@ aeM
anE
aez
aZC
-qYC
+uUB
bax
baH
baV
@@ -86005,7 +86031,7 @@ aEa
aEa
aCI
aCV
-aDi
+oAX
aCJ
aEa
aDw
@@ -87390,7 +87416,7 @@ bYA
caF
ctv
bPv
-cju
+xNc
ckW
bJq
vhs
@@ -87461,7 +87487,7 @@ cSr
cSg
cSr
cSr
-aCq
+qHW
cqn
cOH
cOH
@@ -87690,11 +87716,11 @@ vzw
vzw
aHf
cqn
-cQl
+nWT
cRV
cRV
cSs
-afY
+qgK
cSK
dMV
cOH
@@ -88165,7 +88191,7 @@ dTs
dTs
dTs
dMV
-xRf
+wla
cRi
cRi
cRi
@@ -88453,7 +88479,7 @@ dzb
dWE
dWE
dWN
-rEH
+lsn
dyb
dDZ
dyb
@@ -89965,7 +89991,7 @@ bEJ
bFV
bHm
bIm
-bJv
+jMe
dwW
dwX
bMn
@@ -90181,7 +90207,7 @@ bib
bib
bod
btc
-bpR
+oyr
bqZ
bqZ
bsH
@@ -90780,7 +90806,7 @@ kJP
fCB
hOK
die
-het
+fyI
dqV
dqV
dqm
@@ -90789,7 +90815,7 @@ dWa
ecm
dus
doH
-dzj
+kIB
dzg
dzg
bgq
@@ -90997,7 +91023,7 @@ daK
ddT
dex
dex
-dfU
+ogQ
grQ
dWj
daK
@@ -91014,7 +91040,7 @@ doi
hxj
dpA
dqm
-dsa
+ejL
ebu
dsO
dqm
@@ -91257,7 +91283,7 @@ dVI
ect
dqo
dpB
-dzj
+kIB
dzg
dzg
bgq
@@ -92185,7 +92211,7 @@ dNS
dpB
dqo
cgp
-ebv
+hsx
dqo
dOe
dVP
@@ -93086,7 +93112,7 @@ dTs
cPL
cPL
cTL
-dHs
+gIQ
hOA
cPL
cPL
@@ -93508,7 +93534,7 @@ vHQ
vHQ
vHQ
vHQ
-ipQ
+tfA
aDT
dTs
cft
@@ -93801,7 +93827,7 @@ dNS
dNS
dNS
dck
-dcV
+wxV
dcW
dcW
dfe
@@ -94583,7 +94609,7 @@ asA
asB
aet
aeX
-avn
+quS
aow
dTs
dTs
@@ -95376,7 +95402,7 @@ dTs
dTs
dTs
aDT
-aEu
+oyp
chY
ceX
caH
@@ -98091,7 +98117,7 @@ arL
atQ
auj
arL
-avA
+vLS
arJ
ayK
ayX
@@ -98606,7 +98632,7 @@ eyL
eyL
eyL
eyL
-pif
+jMG
bfm
dTs
dTs
@@ -98660,7 +98686,7 @@ ciu
dnP
ceY
ciR
-bLu
+pmt
ckB
ckB
ckB
@@ -98805,7 +98831,7 @@ ayh
axL
ayx
aCr
-ayE
+vwv
auq
auq
azo
@@ -99273,9 +99299,9 @@ dTs
dTs
dTs
aCr
-ayG
+shZ
ayV
-azg
+lDf
azo
aCr
dTs
@@ -99557,7 +99583,7 @@ brh
bDD
bFb
azJ
-bHB
+cWK
bIC
bDx
dTs
@@ -99842,7 +99868,7 @@ crE
dQc
csI
cvO
-cwI
+rBL
cxA
lib
ctQ
@@ -100303,7 +100329,7 @@ clI
clI
dPa
coR
-cpD
+xwq
ckD
crG
dPU
@@ -100382,7 +100408,7 @@ dFe
dFe
dwE
dxe
-xJG
+nAt
dWz
dWG
dWL
@@ -101489,7 +101515,7 @@ dQM
cBk
cCj
cDr
-cAH
+dhL
cAK
cGe
cHa
@@ -101730,7 +101756,7 @@ cHb
cFn
cCg
cJB
-cKt
+ioO
cLl
cLR
cJA
@@ -102313,7 +102339,7 @@ avG
axW
gNq
aye
-bvB
+srU
avH
ayL
ayX
@@ -102639,7 +102665,7 @@ ciU
cjv
cke
ckP
-clO
+yaK
cZK
jVr
coT
@@ -102778,7 +102804,7 @@ aCr
aqC
aqC
avG
-ayb
+trt
ayk
ayv
ayj
@@ -103373,7 +103399,7 @@ cKy
cJG
cMQ
cNE
-ppS
+qiG
cOI
cMP
dTs
@@ -103483,7 +103509,7 @@ avG
axW
ayi
pFj
-bvB
+srU
avH
ayL
ayX
@@ -103588,7 +103614,7 @@ cvb
cvW
cwQ
cxE
-cyj
+dYU
erB
czH
cAr
@@ -104182,9 +104208,9 @@ aCr
aqC
aqC
avG
-bvB
+srU
aym
-ayb
+trt
ayz
avH
ayS
@@ -104758,7 +104784,7 @@ cvb
cvb
cwQ
cxE
-cyo
+wpS
czd
czJ
cAu
@@ -106174,7 +106200,7 @@ dRy
dRT
cGB
cHN
-cIM
+edE
cIT
cIT
cLo
@@ -106392,7 +106418,7 @@ bZx
dPI
csR
cue
-cvh
+nor
cvi
cwX
cvi
@@ -107084,7 +107110,7 @@ civ
ciW
cjG
dOr
-dCw
+ict
dOO
cmF
cjG
@@ -107098,7 +107124,7 @@ cvk
cwg
cvi
cvi
-cys
+xyt
czf
czN
cBx
@@ -108108,7 +108134,7 @@ dym
dXI
dAD
dBr
-dZT
+foO
dFf
dFf
dFf
@@ -108371,7 +108397,7 @@ acu
afP
ajQ
akX
-alm
+iRs
alN
aiI
alI
@@ -108505,7 +108531,7 @@ dTs
dTs
dTs
czO
-cAE
+gps
cBC
cCA
cDz
@@ -108723,7 +108749,7 @@ cdw
cdw
cdw
aMz
-aMA
+rnV
aNg
aNw
aMz
@@ -108751,7 +108777,7 @@ cub
cIV
cIV
cHL
-cLr
+tpV
cMb
cMb
cMb
@@ -109909,7 +109935,7 @@ dTs
dTs
dTs
czP
-cAC
+jQS
cBH
cCE
cDA
@@ -111586,7 +111612,7 @@ daO
fTk
dqs
dri
-deH
+sVj
dcw
dUt
dzD
@@ -111862,7 +111888,7 @@ dBy
dBy
dBy
dIk
-dIP
+qaH
dJj
ebo
dZN
@@ -112958,7 +112984,7 @@ bgo
bhs
bjw
bkC
-bkO
+jTZ
bgl
bFF
bTW
@@ -113266,7 +113292,7 @@ dCg
dBy
dCg
dIk
-dyt
+wvL
dIr
dCj
dJG
@@ -113537,7 +113563,7 @@ apn
aqe
apn
aqQ
-ark
+tjz
aqk
asm
asH
@@ -114794,7 +114820,7 @@ dib
dMq
aoi
asO
-avp
+hIy
aNS
aNS
aNU
@@ -116795,7 +116821,7 @@ acu
dTs
dTs
akk
-alg
+eLk
akK
akK
akK
@@ -118865,7 +118891,7 @@ cWV
xOb
xec
aVd
-bby
+eXc
bvw
blc
blc
@@ -118913,7 +118939,7 @@ arq
asw
avo
axy
-axB
+qIu
aas
dTs
dTs
diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm
index 0fd8b269d3..9cd11760c2 100644
--- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm
+++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm
@@ -17167,7 +17167,7 @@
},
/area/prison/security/checkpoint/highsec/n)
"aWF" = (
-/obj/item/phone,
+/obj/item/handset,
/obj/structure/surface/table/reinforced,
/turf/open/floor/prison{
dir = 9;
@@ -18315,7 +18315,7 @@
/turf/open/floor/prison,
/area/prison/kitchen)
"bag" = (
-/obj/item/phone,
+/obj/item/handset,
/obj/structure/surface/table/reinforced,
/turf/open/floor{
icon_state = "hydrofloor"
@@ -20844,7 +20844,7 @@
},
/area/prison/cellblock/vip)
"bhq" = (
-/obj/item/phone,
+/obj/item/handset,
/obj/structure/surface/table/reinforced,
/turf/open/floor/prison{
icon_state = "cell_stripe"
@@ -23437,7 +23437,7 @@
},
/area/prison/cellblock/vip)
"boR" = (
-/obj/item/phone,
+/obj/item/handset,
/obj/structure/surface/table/reinforced,
/turf/open/floor/prison{
dir = 1;
@@ -37320,7 +37320,7 @@
/turf/open/floor/prison,
/area/prison/recreation/medsec)
"cgm" = (
-/obj/item/phone,
+/obj/item/handset,
/obj/structure/surface/table/reinforced,
/turf/open/floor/prison,
/area/prison/recreation/medsec)
diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
index 660c219af5..fd4c360e7e 100644
--- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
@@ -2035,7 +2035,7 @@
/area/fiorina/station/botany)
"bck" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
+/obj/item/handset{
pixel_y = 7
},
/turf/open/floor/prison{
@@ -11656,7 +11656,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 8;
pixel_y = 6
},
@@ -11946,7 +11946,7 @@
},
/area/fiorina/station/lowsec)
"hob" = (
-/obj/item/phone{
+/obj/item/handset{
pixel_y = 7
},
/turf/open/floor/plating/prison,
@@ -12421,11 +12421,11 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 7;
pixel_y = -16
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -3;
pixel_y = 16
},
@@ -16569,11 +16569,11 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 6;
pixel_y = -15
},
-/obj/item/phone{
+/obj/item/handset{
pixel_y = 7
},
/turf/open/floor/prison{
@@ -17733,7 +17733,7 @@
/area/fiorina/station/transit_hub)
"kLX" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone,
+/obj/item/handset,
/turf/open/floor/prison{
dir = 10;
icon_state = "sterile_white"
@@ -19893,7 +19893,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -3;
pixel_y = 13
},
@@ -21789,7 +21789,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -3;
pixel_y = 13
},
@@ -31826,7 +31826,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/medbay)
"tER" = (
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 9;
pixel_y = -10
},
@@ -34510,11 +34510,11 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -3;
pixel_y = 10
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 9;
pixel_y = -10
},
@@ -36440,10 +36440,10 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_y = -4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 7;
pixel_y = 10
},
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm
index 0043ae9f1c..368d8e5faa 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm
@@ -494,7 +494,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -3;
pixel_y = 13
},
diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
index d777aaf2e7..0332274d42 100644
--- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
+++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
@@ -11183,7 +11183,7 @@
pixel_y = 5
},
/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
+/obj/item/handset{
pixel_x = -12;
pixel_y = 7
},
diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm
index fdc0fdea32..f82f8bc42d 100644
--- a/maps/map_files/Kutjevo/Kutjevo.dmm
+++ b/maps/map_files/Kutjevo/Kutjevo.dmm
@@ -3336,7 +3336,7 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/interior/power)
"ewF" = (
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 1;
pixel_y = 4
},
@@ -8059,7 +8059,7 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
+/obj/item/handset{
pixel_x = 5;
pixel_y = -4
},
diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
index e798127468..7559e07353 100644
--- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
+++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
@@ -1367,7 +1367,7 @@
},
/area/lv522/indoors/a_block/dorms)
"aNn" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Colony Corporate";
@@ -2377,7 +2377,7 @@
/area/lv522/indoors/c_block/garage)
"bny" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Reactor Garage";
@@ -8838,7 +8838,7 @@
/area/lv522/oob)
"ebR" = (
/obj/structure/surface/table/almayer,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 1;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -11205,7 +11205,7 @@
/obj/structure/platform{
dir = 8
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "LZ1 Service Tunnel";
@@ -11478,7 +11478,7 @@
/area/lv522/landing_zone_2)
"ffO" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 8;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -17534,7 +17534,7 @@
"huX" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 1;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -18627,7 +18627,7 @@
"hPQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/surface/table/woodentable/fancy,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "LV522 Chances Claim";
phone_id = "Chief Engineer Office";
pixel_x = -2;
@@ -19659,7 +19659,7 @@
/area/lv522/landing_zone_1/tunnel)
"ike" = (
/obj/item/prop/alien/hugger,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -22663,7 +22663,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -23515,7 +23515,7 @@
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/lv522/oob)
"jEF" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Reactor Meeting Room";
@@ -29654,7 +29654,7 @@
/area/lv522/landing_zone_2)
"lSP" = (
/obj/structure/surface/table/almayer,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "LV522 Chances Claim";
phone_id = "Colony Operations Centre";
pixel_y = 6
@@ -30067,7 +30067,7 @@
"mbw" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Colony Dining";
@@ -31010,7 +31010,7 @@
/turf/open/floor/grass,
/area/lv522/indoors/a_block/garden)
"mtM" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -31032,7 +31032,7 @@
"muO" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 1;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -32905,7 +32905,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/security)
"nem" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Colony Northern Dorms";
@@ -34187,7 +34187,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"nDS" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Colony Dorms";
@@ -36356,7 +36356,7 @@
},
/area/lv522/outdoors/colony_streets/north_west_street)
"osm" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Reactor Sewer";
@@ -37068,7 +37068,7 @@
},
/area/lv522/indoors/a_block/admin)
"oHR" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 4;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -37219,7 +37219,7 @@
},
/area/lv522/atmos/east_reactor/south)
"oKN" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Reactor Central Office";
@@ -41954,7 +41954,7 @@
},
/area/lv522/indoors/a_block/dorms)
"qyp" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Reactor Eastern Reactor Control";
@@ -42387,7 +42387,7 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/central_streets)
"qGh" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Colony Fitness";
@@ -44203,7 +44203,7 @@
"rjl" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/decal/cleanable/blood,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "LV522 Chances Claim";
phone_color = "red";
phone_id = "Reactor Entrance Office";
@@ -47074,7 +47074,7 @@
/area/lv522/landing_zone_2)
"slt" = (
/obj/structure/surface/table/almayer,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "LV522 Chances Claim";
phone_id = "Reactor Control";
pixel_y = 6
@@ -55594,7 +55594,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 8;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -59282,7 +59282,7 @@
/area/lv522/indoors/a_block/admin)
"wDu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 8;
phone_category = "LV522 Chances Claim";
phone_color = "red";
@@ -60553,7 +60553,7 @@
/area/lv522/outdoors/colony_streets/north_street)
"xfS" = (
/obj/structure/surface/table/woodentable/fancy,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
dir = 1;
phone_category = "LV522 Chances Claim";
phone_color = "red";
diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm
index 20757954b5..80da4a7381 100644
--- a/maps/map_files/LV624/LV624.dmm
+++ b/maps/map_files/LV624/LV624.dmm
@@ -4750,7 +4750,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_id = "Research Dome";
pixel_y = 24
@@ -5744,7 +5744,7 @@
/area/lv624/lazarus/sleep_female)
"aBe" = (
/obj/structure/surface/table,
-/obj/item/phone,
+/obj/item/handset,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor{
dir = 9;
@@ -8068,7 +8068,7 @@
},
/area/lv624/lazarus/main_hall)
"aJC" = (
-/obj/item/phone{
+/obj/item/handset{
desc = "A model of an ancient Earth communication device.";
force = 8
},
@@ -8640,7 +8640,7 @@
pixel_x = 6;
pixel_y = 14
},
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lazarus Landing";
phone_color = "red";
phone_id = "Marshal Office"
@@ -11548,7 +11548,7 @@
"aXt" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_color = "yellow";
phone_id = "Engineering";
@@ -11861,7 +11861,7 @@
"aYJ" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/trash/chips,
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lazarus Landing";
phone_color = "blue";
phone_id = "Director's Office"
@@ -14986,7 +14986,7 @@
/turf/open/gm/river,
/area/lv624/ground/river/central_river)
"hXt" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_id = "Lakeside Bar";
pixel_y = 32
@@ -17005,7 +17005,7 @@
},
/area/lv624/ground/barrens/west_barrens)
"nrP" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_id = "Cargo";
pixel_y = 24
@@ -18086,7 +18086,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lazarus Landing";
phone_id = "Medbay"
},
@@ -18254,7 +18254,7 @@
pixel_x = 25;
pixel_y = -5
},
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_color = "blue";
phone_id = "Corporate Office";
@@ -19042,7 +19042,7 @@
/turf/open/gm/dirtgrassborder/south,
/area/lv624/ground/colony/north_tcomms_road)
"rVH" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_color = "yellow";
phone_id = "Communications";
@@ -20048,7 +20048,7 @@
},
/area/lv624/ground/caves/sand_temple)
"ulp" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_color = "red";
phone_id = "Secure Storage";
diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm
index af57be0474..b16499db31 100644
--- a/maps/map_files/LV624/armory/10.cheese.dmm
+++ b/maps/map_files/LV624/armory/10.cheese.dmm
@@ -17,7 +17,7 @@
},
/area/lv624/lazarus/main_hall)
"d" = (
-/obj/item/phone{
+/obj/item/handset{
desc = "A model of an ancient Earth communication device.";
force = 8
},
diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm
index 6ac8be8435..e407d06c85 100644
--- a/maps/map_files/LV624/armory/10.extra.dmm
+++ b/maps/map_files/LV624/armory/10.extra.dmm
@@ -17,7 +17,7 @@
},
/area/lv624/lazarus/main_hall)
"d" = (
-/obj/item/phone{
+/obj/item/handset{
desc = "A model of an ancient Earth communication device.";
force = 8
},
diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm
index cf9c2d141a..40e2637415 100644
--- a/maps/map_files/LV624/armory/10.looted.dmm
+++ b/maps/map_files/LV624/armory/10.looted.dmm
@@ -18,7 +18,7 @@
},
/area/lv624/lazarus/main_hall)
"d" = (
-/obj/item/phone{
+/obj/item/handset{
desc = "A model of an ancient Earth communication device.";
force = 8
},
diff --git a/maps/map_files/LV624/medbay/10.destroyed.dmm b/maps/map_files/LV624/medbay/10.destroyed.dmm
index bf310be7dd..d0f71603dd 100644
--- a/maps/map_files/LV624/medbay/10.destroyed.dmm
+++ b/maps/map_files/LV624/medbay/10.destroyed.dmm
@@ -129,7 +129,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lazarus Landing";
phone_id = "Medbay"
},
diff --git a/maps/map_files/LV624/medbay/30.larvasurgery.dmm b/maps/map_files/LV624/medbay/30.larvasurgery.dmm
index 613b76c3e2..7a773c4c6d 100644
--- a/maps/map_files/LV624/medbay/30.larvasurgery.dmm
+++ b/maps/map_files/LV624/medbay/30.larvasurgery.dmm
@@ -515,7 +515,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/obj/structure/transmitter/colony_net/rotary{
+/obj/structure/phone_base/colony_net/rotary{
phone_category = "Lazarus Landing";
phone_id = "Medbay"
},
diff --git a/maps/map_files/LV624/science/10.yautja.dmm b/maps/map_files/LV624/science/10.yautja.dmm
index 7c8df9531d..52130f95fc 100644
--- a/maps/map_files/LV624/science/10.yautja.dmm
+++ b/maps/map_files/LV624/science/10.yautja.dmm
@@ -172,7 +172,7 @@
dir = 8
},
/obj/effect/landmark/crap_item,
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_id = "Research Dome";
pixel_y = 24
diff --git a/maps/map_files/LV624/science/40.fullylocked.dmm b/maps/map_files/LV624/science/40.fullylocked.dmm
index 1957d6fef0..b6124474f9 100644
--- a/maps/map_files/LV624/science/40.fullylocked.dmm
+++ b/maps/map_files/LV624/science/40.fullylocked.dmm
@@ -409,7 +409,7 @@
},
/area/lv624/lazarus/research)
"oe" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
phone_category = "Lazarus Landing";
phone_id = "Research Dome";
pixel_y = 24
diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm
index e69c2de5bc..2700593a2a 100644
--- a/maps/map_files/LV624/standalone/clfship.dmm
+++ b/maps/map_files/LV624/standalone/clfship.dmm
@@ -161,7 +161,7 @@
},
/area/lv624/lazarus/crashed_ship)
"fA" = (
-/obj/structure/transmitter/clf_net{
+/obj/structure/phone_base/clf_net{
phone_category = "CR-116";
phone_id = "Armoury";
pixel_y = 32
@@ -664,7 +664,7 @@
"sI" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
-/obj/structure/transmitter/clf_net/rotary{
+/obj/structure/phone_base/clf_net/rotary{
phone_category = "CR-116";
phone_color = "yellow";
phone_id = "Engineering"
@@ -1657,7 +1657,7 @@
/area/lv624/lazarus/crashed_ship)
"Qj" = (
/obj/structure/machinery/body_scanconsole,
-/obj/structure/transmitter/clf_net{
+/obj/structure/phone_base/clf_net{
phone_category = "CR-116";
phone_color = "green";
phone_id = "Medical Bay";
@@ -1987,7 +1987,7 @@
},
/area/lv624/lazarus/crashed_ship)
"XM" = (
-/obj/structure/transmitter/clf_net{
+/obj/structure/phone_base/clf_net{
phone_category = "CR-116";
phone_id = "Cargo Bay";
pixel_y = 32
diff --git a/maps/map_files/LV624/standalone/laststand.dmm b/maps/map_files/LV624/standalone/laststand.dmm
index 43201f92cb..ebdb595397 100644
--- a/maps/map_files/LV624/standalone/laststand.dmm
+++ b/maps/map_files/LV624/standalone/laststand.dmm
@@ -404,7 +404,7 @@
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"Yc" = (
-/obj/structure/transmitter/colony_net{
+/obj/structure/phone_base/colony_net{
pixel_y = 32;
phone_category = "Lazarus Landing";
phone_id = "Lakeside Bar"
diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm
index 328e450fba..66c65da735 100644
--- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm
+++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm
@@ -327,12 +327,6 @@
},
/turf/open/floor/interior/plastic,
/area/strata/ag/interior/paths/cabin_area/central)
-"abh" = (
-/obj/structure/closet/secure_closet/chemical{
- req_access = null
- },
-/turf/open/floor/interior/plastic,
-/area/strata/ag/interior/paths/cabin_area/central)
"abi" = (
/obj/structure/machinery/weather_siren{
pixel_y = -8
@@ -370,10 +364,6 @@
/obj/effect/decal/cleanable/blood,
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/interior/outpost/gen/bball/nest)
-"abs" = (
-/obj/structure/filingcabinet,
-/turf/open/auto_turf/snow/brown_base/layer0,
-/area/strata/ag/interior/outpost/gen/bball/nest)
"abt" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras,
@@ -382,14 +372,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/gen/bball/nest)
-"abu" = (
-/obj/structure/surface/rack,
-/obj/item/tank/emergency_oxygen/engi,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/gen/bball/nest)
"abv" = (
/obj/effect/decal/cleanable/blood,
/turf/open/auto_turf/snow/brown_base/layer0,
@@ -487,15 +469,6 @@
icon_state = "floor2"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"abK" = (
-/obj/structure/closet/wardrobe/grey,
-/obj/effect/landmark/wo_supplies/storage/mines,
-/obj/effect/landmark/wo_supplies/storage/mines,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/gen/bball/nest)
"abL" = (
/obj/item/ammo_magazine/rifle/type71,
/obj/item/ammo_magazine/rifle/type71,
@@ -973,15 +946,6 @@
icon_state = "fake_wood"
},
/area/strata/ug/interior/jungle/deep/minehead)
-"acT" = (
-/obj/structure/filingcabinet,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"acU" = (
/turf/open/auto_turf/ice/layer0,
/area/strata/ag/interior/outpost/gen/bball/nest)
@@ -1148,12 +1112,6 @@
icon_state = "fake_wood"
},
/area/strata/ug/interior/jungle/deep/minehead)
-"adx" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"ady" = (
/obj/effect/decal/strata_decals/catwalk/prison,
/obj/structure/disposalpipe/segment{
@@ -1180,13 +1138,6 @@
icon_state = "floor3"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"adB" = (
-/obj/structure/closet/basketball,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/outpost/gen/bball)
"adC" = (
/obj/effect/decal/cleanable/blood/gibs/core,
/turf/open/auto_turf/snow/brown_base/layer0,
@@ -1304,18 +1255,6 @@
"adQ" = (
/turf/closed/wall/wood,
/area/strata/ug/interior)
-"adR" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/tool/kitchen/utensil/pfork,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"adS" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/interior/research_decks/security)
@@ -1332,13 +1271,6 @@
icon_state = "red1"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"adV" = (
-/obj/structure/filingcabinet,
-/obj/structure/window/reinforced/tinted,
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"adW" = (
/obj/item/stack/rods,
/turf/open/auto_turf/snow/brown_base/layer0,
@@ -1633,10 +1565,6 @@
/obj/structure/flora/grass/tallgrass/ice,
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/interior/outpost/gen/bball/nest)
-"aeV" = (
-/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/interior/plastic,
-/area/strata/ag/interior/paths/cabin_area/central)
"aeW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/floor/plating,
@@ -2507,12 +2435,6 @@
icon_state = "blue1"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"ahq" = (
-/obj/structure/closet,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/dorms/flight_control)
"ahr" = (
/obj/structure/closet/fireaxecabinet,
/turf/closed/wall/strata_outpost,
@@ -2649,16 +2571,6 @@
},
/turf/open/floor/plating,
/area/strata/ug/interior/jungle/deep/structures/res)
-"ahO" = (
-/obj/structure/filingcabinet/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/dorms/flight_control)
"ahP" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/strata{
@@ -3088,12 +3000,6 @@
},
/turf/open/auto_turf/snow/brown_base/layer3,
/area/strata/ag/exterior/paths/cabin_area)
-"ajd" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"aje" = (
/obj/structure/machinery/washing_machine,
/turf/open/floor/strata{
@@ -3169,15 +3075,6 @@
icon_state = "cyan2"
},
/area/strata/ag/interior/dorms/canteen)
-"ajo" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/reagent_container/food/snacks/eggplantparm,
-/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
-/area/strata/ag/interior/dorms/canteen)
"ajp" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/jellysandwich,
@@ -3530,12 +3427,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/dorms/flight_control)
-"akp" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/dorms/flight_control)
"akq" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
@@ -3674,13 +3565,6 @@
icon_state = "floor3"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"akM" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"akN" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1
@@ -3785,14 +3669,6 @@
icon_state = "white_cyan2"
},
/area/strata/ag/interior/dorms/canteen)
-"alc" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/reagent_container/food/snacks/meatballspagetti,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/dorms/canteen)
"ald" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -4127,15 +4003,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/canteen/personal_storage)
-"amc" = (
-/obj/effect/decal/cleanable/blood{
- layer = 3
- },
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"amd" = (
/obj/structure/sink{
dir = 4;
@@ -4488,17 +4355,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/research_decks/security)
-"ans" = (
-/obj/structure/closet/secure_closet/security/soro,
-/obj/item/reagent_container/food/snacks/carpmeat,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/research_decks/security)
"ant" = (
/turf/open/floor/strata{
icon_state = "red1"
@@ -4510,21 +4366,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/research_decks/security)
-"anv" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/device/flashlight/lamp,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/research_decks/security)
"anw" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/strata_decals/catwalk/prison,
@@ -4538,22 +4379,6 @@
icon_state = "floor3"
},
/area/strata/ag/exterior/research_decks)
-"anz" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/tool/kitchen/utensil/pfork,
-/obj/item/device/flashlight/lamp,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/research_decks/security)
"anA" = (
/obj/structure/machinery/space_heater,
/obj/structure/pipes/vents/pump/on,
@@ -4561,13 +4386,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/research_decks/security)
-"anB" = (
-/obj/item/reagent_container/food/snacks/carpmeat,
-/obj/structure/closet/secure_closet/security/soro,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/research_decks/security)
"anC" = (
/obj/item/device/megaphone,
/obj/structure/surface/table/reinforced/prison,
@@ -4817,17 +4635,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/outpost/security)
-"aoD" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/structure/barricade/handrail/strata,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/outpost/security)
"aoE" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
dir = 8
@@ -5065,13 +4872,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/research_decks/security)
-"apu" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/reagent_container/food/drinks/bottle/sake,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/research_decks/security)
"apv" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
@@ -5228,13 +5028,6 @@
/obj/structure/machinery/computer/shuttle/dropship/flight/lz1,
/turf/open/floor/plating,
/area/strata/ag/interior/landingzone_1)
-"apU" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/tool/kitchen/knife,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
-/area/strata/ag/interior/dorms/maintenance)
"apV" = (
/obj/structure/window/framed/strata/reinforced,
/turf/open/floor/strata{
@@ -5479,12 +5272,6 @@
icon_state = "white_cyan2"
},
/area/strata/ag/interior/outpost/security)
-"aqE" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
"aqG" = (
/obj/structure/machinery/computer/communications{
dir = 4
@@ -5616,12 +5403,6 @@
icon_state = "floor2"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"ara" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"arb" = (
/obj/item/storage/belt/security,
/turf/open/floor/strata{
@@ -5741,15 +5522,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/engi)
-"arv" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/outpost/security)
"arw" = (
/obj/structure/bed/chair/office/light,
/obj/effect/landmark/corpsespawner/russian,
@@ -5757,12 +5529,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/security)
-"arx" = (
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/security)
"ary" = (
/obj/structure/bed/chair{
dir = 1
@@ -5820,12 +5586,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/outpost/security)
-"arF" = (
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ag/interior/outpost/security)
"arG" = (
/obj/structure/sink{
dir = 4;
@@ -6163,20 +5923,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/outpost/security)
-"asB" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/tool/stamp,
-/obj/item/paper_bin,
-/obj/structure/pipes/standard/manifold/hidden/cyan,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/outpost/security)
"asD" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/auto_turf/snow/brown_base/layer2,
@@ -6250,17 +5996,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
-"asP" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
"asQ" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/turf/open/floor/strata{
@@ -6562,15 +6297,6 @@
/obj/effect/decal/strata_decals/catwalk/prison,
/turf/open/floor/greengrid,
/area/strata/ag/interior/outpost/engi)
-"atF" = (
-/obj/structure/barricade/handrail/strata{
- dir = 8
- },
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/engi)
"atG" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -7052,17 +6778,6 @@
},
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/north_carp)
-"avj" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/device/flashlight/lamp,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"avk" = (
/obj/structure/stairs/perspective{
color = "#6e6e6e";
@@ -7269,20 +6984,6 @@
icon_state = "darkyellowfull2"
},
/area/strata/ag/interior/outpost/engi)
-"avS" = (
-/obj/structure/barricade/handrail/strata{
- dir = 8
- },
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/engi)
"avT" = (
/obj/structure/bed/chair/office/light,
/obj/effect/landmark/survivor_spawner,
@@ -7334,12 +7035,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/security)
-"avZ" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/security)
"awa" = (
/obj/structure/machinery/photocopier,
/turf/open/floor/strata{
@@ -8058,12 +7753,6 @@
icon_state = "red1"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"aye" = (
-/obj/structure/surface/rack,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"ayf" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony,
/turf/open/floor/strata{
@@ -8672,12 +8361,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi)
-"aAh" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- icon_state = "darkyellowfull2"
- },
-/area/strata/ag/interior/outpost/engi)
"aAj" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
/turf/open/floor/strata,
@@ -8810,21 +8493,6 @@
},
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/security)
-"aAC" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/device/flashlight/lamp,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/outpost/security)
"aAD" = (
/obj/structure/machinery/space_heater,
/turf/open/floor/strata{
@@ -8839,17 +8507,6 @@
icon_state = "fake_wood"
},
/area/strata/ag/interior/outpost/security)
-"aAG" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/device/flashlight/lamp,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/outpost/security)
"aAJ" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -9685,13 +9342,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/dorms)
-"aDD" = (
-/obj/structure/closet,
-/obj/item/storage/pill_bottle/kelotane/skillless,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/dorms)
"aDE" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
@@ -10945,15 +10595,6 @@
icon_state = "white_cyan1"
},
/area/strata/ag/interior/dorms)
-"aHd" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "xgib2"
- },
-/obj/item/tool/kitchen/utensil/pknife,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
-/area/strata/ag/interior/dorms)
"aHe" = (
/obj/structure/bed/chair{
dir = 8
@@ -11411,16 +11052,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/engi)
-"aIX" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/structure/platform/strata/metal{
- dir = 4
- },
-/obj/item/stack/sheet/plasteel/medium_stack,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/engi)
"aIZ" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -11501,20 +11132,6 @@
/obj/effect/decal/cleanable/blood,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/interior/outpost/gen/bball/nest)
-"aJo" = (
-/obj/structure/machinery/blackbox_recorder,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/obj/item/prop/almayer/flight_recorder/colony{
- pixel_x = -6;
- pixel_y = 10
- },
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/admin)
"aJp" = (
/obj/structure/platform/strata/metal{
dir = 8
@@ -11548,20 +11165,6 @@
icon_state = "blue1"
},
/area/strata/ag/interior/outpost/admin)
-"aJw" = (
-/obj/structure/toilet,
-/obj/structure/sink{
- dir = 8;
- pixel_x = -11
- },
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ag/interior/outpost/admin)
"aJA" = (
/obj/structure/barricade/wooden{
dir = 1
@@ -12187,14 +11790,6 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/interior/outpost/gen/bball/nest)
-"aLv" = (
-/obj/item/reagent_container/food/drinks/bottle/sake{
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/structure/surface/table/almayer,
-/turf/open/asphalt/cement,
-/area/strata/ag/exterior/paths/adminext)
"aLw" = (
/obj/structure/machinery/weather_siren{
dir = 1;
@@ -12593,20 +12188,6 @@
},
/turf/open/floor/strata,
/area/strata/ag/interior/dorms/south)
-"aMM" = (
-/obj/structure/machinery/computer/station_alert{
- dir = 4;
- pixel_x = -10
- },
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/dorms/south)
"aMN" = (
/obj/structure/pipes/vents/pump/on,
/turf/open/floor/strata{
@@ -13001,13 +12582,6 @@
icon_state = "floor3"
},
/area/strata/ag/exterior/research_decks)
-"aNW" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/exterior/research_decks)
"aNX" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13254,13 +12828,6 @@
/obj/structure/platform/strata/metal,
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/paths/dorms_quad)
-"aOG" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/reagent_container/food/drinks/cans/sodawater,
-/turf/open/floor/prison{
- icon_state = "darkyellowfull2"
- },
-/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
"aOJ" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/turf/open/floor/strata{
@@ -13277,13 +12844,6 @@
icon_state = "white_cyan1"
},
/area/strata/ag/interior/outpost/canteen)
-"aOL" = (
-/obj/structure/closet/crate/science,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/maint/canteen_e_1)
"aOM" = (
/obj/effect/decal/cleanable/blood{
layer = 3
@@ -13362,12 +12922,6 @@
/obj/structure/pipes/standard/simple/hidden/cyan,
/turf/open/floor/strata,
/area/strata/ag/interior/dorms/south)
-"aPb" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/dorms/south)
"aPc" = (
/obj/structure/platform/strata/metal{
dir = 8
@@ -13425,16 +12979,6 @@
},
/turf/open/auto_turf/snow/brown_base/layer4,
/area/strata/ag/exterior/paths/dorms_quad)
-"aPo" = (
-/obj/structure/surface/rack,
-/obj/item/explosive/grenade/phosphorus,
-/obj/item/explosive/grenade/phosphorus,
-/obj/item/folder/red,
-/obj/item/ammo_box/magazine/shotgun/buckshot,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/dorms/south)
"aPp" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/turf/open/floor/strata{
@@ -14391,18 +13935,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/canteen/bar)
-"aSo" = (
-/obj/structure/closet/firecloset/full,
-/obj/effect/decal/cleanable/blood,
-/obj/structure/barricade/wooden{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/canteen/bar)
"aSp" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/chawanmushi,
@@ -14805,18 +14337,6 @@
icon_state = "blue1"
},
/area/strata/ag/interior/outpost/admin)
-"aTN" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/admin)
"aTP" = (
/obj/item/tool/mop,
/obj/structure/janitorialcart,
@@ -15039,23 +14559,6 @@
},
/turf/open/floor/strata,
/area/strata/ag/exterior/research_decks)
-"aUK" = (
-/obj/structure/closet/firecloset/full,
-/obj/structure/machinery/light/small,
-/turf/open/asphalt/cement,
-/area/strata/ag/interior/outpost/gen/foyer)
-"aUM" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/structure/machinery/power/apc{
- dir = 8;
- pixel_x = -24;
- start_charge = 0
- },
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/gen/foyer)
"aUN" = (
/turf/open/floor/strata{
icon_state = "fake_wood"
@@ -15497,13 +15000,6 @@
},
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/paths/adminext)
-"aWB" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ug/interior/outpost/jung/dorms/med2)
"aWE" = (
/obj/structure/closet/secure_closet/personal,
/obj/structure/machinery/light/small{
@@ -15603,16 +15099,6 @@
icon_state = "blue1"
},
/area/strata/ag/interior/outpost/admin)
-"aWZ" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/structure/machinery/power/apc{
- dir = 1;
- pixel_y = 25
- },
-/turf/open/floor/interior/plastic,
-/area/strata/ag/interior/paths/cabin_area/central)
"aXa" = (
/obj/structure/barricade/wooden{
dir = 8
@@ -15824,11 +15310,6 @@
"aXG" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/interior/mountain)
-"aXH" = (
-/obj/structure/surface/table,
-/obj/item/phone,
-/turf/open/floor/strata,
-/area/strata/ag/interior/dorms/south)
"aXI" = (
/obj/structure/bed,
/turf/open/floor/strata,
@@ -16245,14 +15726,6 @@
"aZv" = (
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/marsh/river)
-"aZw" = (
-/obj/structure/surface/rack,
-/obj/item/book/manual/engineering_construction,
-/obj/item/book/manual/engineering_hacking,
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/interior/outpost/maint/canteen_e_1)
"aZx" = (
/turf/open/auto_turf/snow/brown_base/layer0,
/area/strata/ag/exterior/marsh/river)
@@ -16939,14 +16412,6 @@
/obj/structure/machinery/space_heater,
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/admin4)
-"bbM" = (
-/obj/structure/closet/wardrobe/pjs,
-/obj/structure/machinery/power/apc{
- dir = 1;
- pixel_y = 25
- },
-/turf/open/floor/strata,
-/area/strata/ug/interior/outpost/jung/dorms/admin4)
"bbN" = (
/turf/open/floor/strata{
icon_state = "floor2"
@@ -17053,6 +16518,10 @@
/obj/item/lightstick/red/planted,
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/paths/adminext)
+"bcn" = (
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/interior/plastic,
+/area/strata/ag/interior/paths/cabin_area/central)
"bco" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/strata{
@@ -17985,21 +17454,6 @@
},
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/paths/adminext)
-"bfF" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/reagent_container/food/drinks/bottle/sake,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/gen/foyer)
"bfI" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/strata,
@@ -19608,16 +19062,6 @@
/obj/item/toy/deck,
/turf/open/auto_turf/snow/brown_base/layer0,
/area/strata/ag/exterior/paths/southresearch)
-"blD" = (
-/obj/structure/closet/secure_closet/medical3{
- req_access = null
- },
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/interior/plastic,
-/area/strata/ag/interior/paths/cabin_area/central)
"blE" = (
/obj/structure/platform_decoration/strata/metal{
dir = 4
@@ -19863,12 +19307,6 @@
/obj/structure/inflatable,
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/paths/southresearch)
-"bmG" = (
-/obj/structure/closet/bodybag,
-/obj/effect/landmark/corpsespawner/scientist,
-/obj/effect/decal/cleanable/blood,
-/turf/open/auto_turf/snow/brown_base/layer3,
-/area/strata/ag/exterior/paths/southresearch)
"bmH" = (
/obj/structure/closet/bodybag,
/obj/effect/decal/cleanable/blood/gibs/core,
@@ -19999,10 +19437,6 @@
/obj/item/storage/backpack/lightpack,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh/river)
-"bnq" = (
-/obj/structure/largecrate/random,
-/turf/open/asphalt/cement,
-/area/strata/ag/exterior/research_decks)
"bnr" = (
/obj/structure/flora/grass/tallgrass/ice,
/turf/open/auto_turf/snow/brown_base/layer3,
@@ -20084,15 +19518,6 @@
icon_state = "white_cyan1"
},
/area/strata/ag/interior/outpost/canteen)
-"bnI" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/paper_bin,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/auto_turf/snow/brown_base/layer2,
-/area/strata/ag/exterior/paths/southresearch)
"bnJ" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 4
@@ -20192,11 +19617,6 @@
/obj/effect/decal/cleanable/blood/gibs/core,
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/paths/southresearch)
-"bob" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/item/clothing/gloves/latex,
-/turf/open/floor/interior/plastic,
-/area/strata/ag/interior/paths/cabin_area/central)
"boc" = (
/obj/structure/closet/bodybag,
/obj/effect/decal/cleanable/blood/gibs/down,
@@ -20278,15 +19698,6 @@
/obj/structure/inflatable/door,
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/paths/southresearch)
-"bop" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ug/interior/jungle/deep/structures/res)
"boq" = (
/obj/item/stack/medical/splint,
/obj/item/lightstick/red/planted,
@@ -20466,14 +19877,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/med)
-"boQ" = (
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/structure/surface/rack,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/med)
"boS" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 9
@@ -21124,13 +20527,6 @@
/obj/structure/machinery/space_heater,
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/paths/southresearch)
-"brr" = (
-/obj/structure/closet,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ag/interior/administration)
"brs" = (
/obj/structure/surface/table/reinforced/prison,
/turf/open/auto_turf/strata_grass/layer0_mud,
@@ -21154,12 +20550,6 @@
/obj/effect/decal/strata_decals/catwalk/prison,
/turf/open/floor/plating,
/area/strata/ag/interior/administration)
-"brw" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/administration)
"brx" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
@@ -21467,17 +20857,6 @@
icon_state = "blue1"
},
/area/strata/ag/interior/outpost/admin)
-"bsH" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/admin)
"bsI" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -21695,10 +21074,6 @@
/obj/effect/landmark/corpsespawner/doctor,
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/paths/southresearch)
-"btx" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/auto_turf/snow/brown_base/layer1,
-/area/strata/ag/exterior/paths/southresearch)
"bty" = (
/obj/structure/flora/grass/tallgrass/ice,
/turf/open/auto_turf/snow/brown_base/layer3,
@@ -22150,13 +21525,6 @@
icon_state = "floor2"
},
/area/strata/ag/interior/outpost/med)
-"bvj" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/outpost/med)
"bvk" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/structure/machinery/light/small,
@@ -23073,15 +22441,6 @@
icon_state = "cyan1"
},
/area/strata/ag/interior/outpost/med)
-"bzg" = (
-/obj/structure/closet/secure_closet/medical3{
- req_access = null
- },
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/outpost/med)
"bzh" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/interior)
@@ -23498,21 +22857,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/med)
-"bBY" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/structure/machinery/door/window/eastright{
- dir = 2
- },
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/strata{
- dir = 6;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
"bCd" = (
/obj/structure/platform/strata{
dir = 1
@@ -23535,15 +22879,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/dorms)
-"bCm" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ag/interior/outpost/med)
"bCn" = (
/obj/item/clothing/mask/cigarette/cigar/cohiba,
/obj/structure/surface/table/reinforced/prison,
@@ -23732,28 +23067,6 @@
icon_state = "orange_cover"
},
/area/strata/ag/interior/outpost/engi/drome)
-"bDs" = (
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/structure/pipes/vents/pump{
- dir = 1
- },
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/interior/outpost/engi/drome)
-"bDt" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small,
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"bDv" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -23980,16 +23293,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/canteen)
-"bFB" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/structure/machinery/alarm{
- dir = 4;
- pixel_x = -24
- },
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/administration)
"bFC" = (
/obj/structure/noticeboard{
pixel_y = 32
@@ -24050,6 +23353,13 @@
icon_state = "cyan3"
},
/area/strata/ag/interior/outpost/med)
+"bGe" = (
+/obj/structure/closet,
+/obj/item/storage/pill_bottle/kelotane/skillless,
+/turf/open/floor/strata{
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/dorms)
"bGg" = (
/obj/structure/platform/strata{
dir = 8
@@ -24096,27 +23406,6 @@
icon_state = "white_cyan3"
},
/area/strata/ag/interior/outpost/med)
-"bGx" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/storage/pill_bottle/bicaridine,
-/obj/structure/machinery/door/window/eastright{
- dir = 8
- },
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
-"bGy" = (
-/obj/structure/surface/rack,
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ag/interior/outpost/med)
"bGD" = (
/obj/structure/machinery/photocopier,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
@@ -24532,15 +23821,6 @@
icon_state = "fake_wood"
},
/area/strata/ug/interior/jungle/deep/minehead)
-"bJE" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata,
-/area/strata/ag/interior/administration)
-"bJF" = (
-/obj/structure/filingcabinet,
-/obj/item/pamphlet/skill/medical,
-/turf/open/floor/strata,
-/area/strata/ag/interior/administration)
"bJG" = (
/obj/structure/machinery/weather_siren{
dir = 4;
@@ -24567,17 +23847,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/med)
-"bJW" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/med)
"bJX" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -24676,12 +23945,6 @@
icon_state = "floor2"
},
/area/strata/ag/interior/outpost/med)
-"bKM" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ag/interior/outpost/med)
"bKN" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/closed/wall/wood,
@@ -24713,15 +23976,6 @@
icon_state = "white_cyan1"
},
/area/strata/ag/interior/outpost/med)
-"bKS" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ag/interior/outpost/med)
"bKT" = (
/obj/structure/platform_decoration/strata/metal{
dir = 4
@@ -24886,17 +24140,6 @@
icon_state = "multi_tiles"
},
/area/strata/ug/interior/jungle/deep/structures/res)
-"bMV" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/administration)
"bMX" = (
/obj/structure/machinery/vending/snack,
/turf/open/floor/strata{
@@ -25049,17 +24292,6 @@
icon_state = "cyan1"
},
/area/strata/ag/interior/outpost/med)
-"bOz" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/item/storage/pill_bottle/antitox/skillless,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
"bOA" = (
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light/small,
@@ -25067,6 +24299,17 @@
icon_state = "floor2"
},
/area/strata/ag/interior/outpost/med)
+"bOC" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/admin)
"bOE" = (
/turf/open/floor/strata{
dir = 6;
@@ -25090,21 +24333,6 @@
icon_state = "cyan1"
},
/area/strata/ag/interior/outpost/med)
-"bOH" = (
-/obj/structure/machinery/door_control{
- id = "or01";
- name = "Surgery Door Release";
- normaldoorcontrol = 1;
- pixel_x = 23
- },
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
-/area/strata/ag/interior/outpost/med)
"bOV" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Airlock"
@@ -26266,12 +25494,6 @@
icon_state = "floor3"
},
/area/strata/ag/exterior/research_decks)
-"bYR" = (
-/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/strata{
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/security)
"bYS" = (
/obj/structure/bed/chair{
dir = 4
@@ -26637,16 +25859,6 @@
icon_state = "white_cyan2"
},
/area/strata/ag/interior/outpost/gen/bball)
-"cch" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/outpost/gen/bball)
"cci" = (
/turf/open/floor/strata{
icon_state = "floor3"
@@ -26856,20 +26068,6 @@
"cdA" = (
/turf/closed/wall/strata_outpost,
/area/strata/ag/interior/outpost/gen/bball)
-"cdC" = (
-/obj/structure/closet/secure_closet/chemical{
- req_access = null
- },
-/obj/effect/decal/cleanable/blood/oil,
-/obj/item/storage/pill_bottle/alkysine,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
"cdD" = (
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/strata_outpost,
@@ -27102,13 +26300,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/med)
-"ceZ" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"cfg" = (
/turf/open/floor/strata{
dir = 10;
@@ -27355,24 +26546,6 @@
/obj/structure/mirror,
/turf/closed/wall/strata_outpost,
/area/strata/ag/interior/outpost/admin)
-"cgU" = (
-/obj/structure/toilet,
-/obj/structure/sink{
- dir = 8;
- pixel_x = -11
- },
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/effect/landmark/wo_supplies/storage/belts/medical,
-/obj/item/dogtag,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/weapon/gun/rifle/type71/carbine,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ag/interior/outpost/admin)
"cgW" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/cyan,
@@ -27896,19 +27069,6 @@
icon_state = "white_cyan3"
},
/area/strata/ag/interior/outpost/med)
-"ckz" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan4"
- },
-/area/strata/ag/interior/outpost/med)
"ckA" = (
/obj/structure/surface/rack,
/obj/item/paper_bin,
@@ -28069,16 +27229,6 @@
icon_state = "plate"
},
/area/strata/ag/interior/outpost/engi/drome/shuttle)
-"clr" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/strata/ag/interior/outpost/engi/drome/shuttle)
"cls" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
/turf/closed/shuttle/ert{
@@ -28385,6 +27535,13 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi/drome)
+"cny" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/exterior/research_decks)
"cnA" = (
/obj/structure/window/framed/strata,
/turf/open/floor/strata{
@@ -28655,13 +27812,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/dorms/flight_control)
-"cpE" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/dorms/flight_control)
"cpR" = (
/obj/structure/platform/strata/metal{
dir = 1
@@ -29028,12 +28178,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi/drome)
-"csT" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"csV" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/turf/open/floor/strata{
@@ -29708,12 +28852,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/engi/drome)
-"cTN" = (
-/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ug/interior/jungle/deep/structures/engi)
"cUi" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -29750,21 +28888,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi/drome)
-"cWs" = (
-/obj/structure/barricade/handrail/strata{
- dir = 1
- },
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"cXU" = (
/turf/closed/shuttle/ert{
icon_state = "upp2"
@@ -29778,6 +28901,12 @@
icon_state = "orange_cover"
},
/area/strata/ag/interior/outpost/engi/drome)
+"cYI" = (
+/obj/structure/closet,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/dorms/flight_control)
"cZa" = (
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tool,
@@ -29795,6 +28924,15 @@
icon_state = "cement3"
},
/area/strata/ag/interior/landingzone_1)
+"dah" = (
+/obj/structure/closet/secure_closet/medical3{
+ req_access = null
+ },
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ag/interior/outpost/med)
"daq" = (
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/east_carp)
@@ -29835,6 +28973,15 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi/drome/shuttle)
+"dfw" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/outpost/security)
"dgB" = (
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/engi)
@@ -29936,6 +29083,13 @@
icon_state = "cement4"
},
/area/strata/ag/interior/landingzone_1)
+"doA" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/drinks/cans/sodawater,
+/turf/open/floor/prison{
+ icon_state = "darkyellowfull2"
+ },
+/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
"doO" = (
/obj/structure/machinery/weather_siren{
dir = 1;
@@ -29943,6 +29097,15 @@
},
/turf/closed/wall/strata_outpost,
/area/strata/ag/interior/tcomms)
+"dpd" = (
+/obj/structure/filingcabinet,
+/obj/structure/barricade/handrail/strata{
+ dir = 8
+ },
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/admin)
"dqo" = (
/turf/open/auto_turf/strata_grass/layer0,
/area/strata/ug/interior/jungle/deep/south_engi)
@@ -30091,18 +29254,6 @@
icon_state = "white_cyan2"
},
/area/strata/ag/interior/outpost/gen/bball)
-"dEy" = (
-/obj/structure/closet/secure_closet/medical3{
- req_access = null
- },
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"dEE" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 9
@@ -30159,6 +29310,17 @@
icon_state = "floor2"
},
/area/strata/ug/interior/jungle/deep/structures/engi)
+"dJU" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/item/storage/pill_bottle/antitox/skillless,
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/med)
"dJV" = (
/obj/structure/curtain/medical,
/turf/open/floor/strata{
@@ -30337,6 +29499,14 @@
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/east_dorms)
+"eaq" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/interior/tcomms)
"eaO" = (
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/admin3)
@@ -30504,6 +29674,16 @@
"eqV" = (
/turf/closed/wall/wood,
/area/strata/ag/interior/mountain)
+"eqY" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/open/floor/interior/plastic,
+/area/strata/ag/interior/paths/cabin_area/central)
"era" = (
/obj/structure/machinery/power/apc{
dir = 1;
@@ -30554,16 +29734,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/dorms/hive)
-"eyA" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/storage/fancy/vials,
-/turf/open/floor/strata{
- icon_state = "purp2"
- },
-/area/strata/ug/interior/jungle/deep/structures/engi)
"ezl" = (
/obj/structure/inflatable/door,
/turf/open/floor/strata{
@@ -30598,6 +29768,12 @@
icon_state = "blue1"
},
/area/strata/ug/interior/outpost/jung/dorms/admin1)
+"eEA" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/dorms/flight_control)
"eEO" = (
/obj/structure/prop/turbine_extras/left,
/turf/open/floor/strata{
@@ -30674,6 +29850,12 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/nearlz2)
+"eHW" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/prison{
+ icon_state = "darkyellowfull2"
+ },
+/area/strata/ag/interior/outpost/engi)
"eIB" = (
/obj/structure/flora/grass/tallgrass/jungle,
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -30751,17 +29933,6 @@
icon_state = "red1"
},
/area/strata/ag/interior/landingzone_checkpoint)
-"eNF" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/fancy/cigar,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/landingzone_checkpoint)
"eNL" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -30778,6 +29949,10 @@
},
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ag/exterior/marsh/crash)
+"eNX" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata,
+/area/strata/ag/interior/administration)
"eOc" = (
/obj/structure/bed,
/obj/structure/machinery/light/small,
@@ -30830,6 +30005,11 @@
icon_state = "red1"
},
/area/strata/ag/interior/landingzone_checkpoint)
+"eRV" = (
+/obj/structure/surface/table,
+/obj/item/handset,
+/turf/open/floor/strata,
+/area/strata/ag/interior/dorms/south)
"eSs" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -30936,6 +30116,14 @@
icon_state = "darkyellowfull2"
},
/area/strata/ag/interior/outpost/engi)
+"fgb" = (
+/obj/structure/surface/rack,
+/obj/item/tank/emergency_oxygen/engi,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/gen/bball/nest)
"fhl" = (
/obj/structure/fence,
/turf/open/asphalt/cement{
@@ -30960,6 +30148,12 @@
icon_state = "cement4"
},
/area/strata/ag/exterior/tcomms/tcomms_deck)
+"fjs" = (
+/obj/structure/surface/rack,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"fjZ" = (
/obj/structure/platform_decoration/strata{
dir = 1
@@ -31011,6 +30205,15 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ag/interior/outpost/med)
+"fmB" = (
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"fno" = (
/turf/open/floor/strata{
dir = 6;
@@ -31058,6 +30261,13 @@
icon_state = "blue1"
},
/area/strata/ag/interior/outpost/admin)
+"fso" = (
+/obj/item/reagent_container/food/snacks/carpmeat,
+/obj/structure/closet/secure_closet/security/soro,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/research_decks/security)
"fst" = (
/obj/item/lightstick/red/spoke/planted{
layer = 3.1;
@@ -31255,10 +30465,6 @@
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/paths/cabin_area)
-"fEW" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/asphalt/cement,
-/area/strata/ag/exterior/shed_five_caves)
"fFy" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 5
@@ -31291,6 +30497,23 @@
/obj/effect/landmark/ert_spawns/groundside_xeno,
/turf/open/floor/plating,
/area/strata/ag/interior/tcomms)
+"fIW" = (
+/obj/structure/surface/rack,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
+"fJV" = (
+/obj/structure/closet/secure_closet/medical3{
+ req_access = null
+ },
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/interior/plastic,
+/area/strata/ag/interior/paths/cabin_area/central)
"fKt" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/strata{
@@ -31310,18 +30533,6 @@
},
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/sec1)
-"fMk" = (
-/obj/structure/closet/secure_closet/medical3{
- req_access = null
- },
-/obj/item/explosive/grenade/custom/cleaner,
-/obj/item/explosive/grenade/custom/cleaner,
-/obj/item/storage/pill_bottle/bicaridine/skillless,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
"fMr" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -31407,10 +30618,51 @@
},
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ag/exterior/shed_five_caves)
+"fSF" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/security)
"fSR" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/west_engi)
+"fTN" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
+"fUp" = (
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ag/interior/outpost/security)
+"fUB" = (
+/obj/structure/machinery/power/apc{
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/admin2)
+"fVR" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/admin)
"fWs" = (
/turf/closed/wall/mineral/gold,
/area/strata/ag/interior/outpost/med)
@@ -31489,6 +30741,18 @@
"gcj" = (
/turf/open/gm/coast/beachcorner2/south_east,
/area/strata/ug/interior/jungle/deep/tearlake)
+"gdY" = (
+/obj/structure/closet/firecloset/full,
+/obj/effect/decal/cleanable/blood,
+/obj/structure/barricade/wooden{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/gibs/core,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/canteen/bar)
"gdZ" = (
/obj/structure/machinery/smartfridge,
/obj/structure/machinery/door/window/eastright{
@@ -31522,13 +30786,6 @@
},
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/south_dorms)
-"ggr" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ug/interior/outpost/jung/dorms/sec1)
"ggH" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/strata{
@@ -31536,19 +30793,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/med)
-"ggJ" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/med)
"gha" = (
/obj/structure/inflatable,
/obj/structure/barricade/handrail/strata{
@@ -31651,17 +30895,6 @@
},
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/tearlake)
-"gkA" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/device/flashlight/lamp,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ug/interior/jungle/deep/structures/engi)
"glG" = (
/obj/structure/machinery/power/port_gen/pacman/super,
/turf/open/floor/strata{
@@ -31827,9 +31060,30 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
+"gxl" = (
+/obj/structure/closet/secure_closet/security/soro,
+/obj/item/reagent_container/food/snacks/carpmeat,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/research_decks/security)
"gzd" = (
/turf/open/gm/coast/east,
/area/strata/ug/interior/jungle/deep/south_engi)
+"gzT" = (
+/obj/structure/barricade/handrail/strata{
+ dir = 8
+ },
+/obj/structure/barricade/handrail/strata,
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/admin)
"gAm" = (
/turf/open/floor/strata{
icon_state = "fake_wood"
@@ -31859,6 +31113,16 @@
/obj/item/stack/snow,
/turf/open/floor/strata,
/area/strata/ag/exterior/paths/north_outpost)
+"gCZ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"gDg" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
/turf/closed/wall/strata_outpost/reinforced,
@@ -31929,6 +31193,11 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/nearlz2)
+"gKP" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/clothing/gloves/latex,
+/turf/open/floor/interior/plastic,
+/area/strata/ag/interior/paths/cabin_area/central)
"gLF" = (
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ag/exterior/paths/north_outpost)
@@ -32068,6 +31337,12 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh/crash)
+"gUV" = (
+/obj/structure/surface/rack,
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ag/interior/outpost/med)
"gVJ" = (
/obj/effect/blocker/sorokyne_cold_water,
/obj/effect/blocker/sorokyne_cold_water,
@@ -32099,6 +31374,12 @@
icon_state = "orange_cover"
},
/area/strata/ag/interior/outpost/engi/drome)
+"gYs" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/exterior/north_lz_caves)
"gZp" = (
/obj/item/tank/emergency_oxygen/engi,
/turf/open/floor/almayer{
@@ -32111,16 +31392,6 @@
icon_state = "darkyellowfull2"
},
/area/strata/ag/exterior/research_decks)
-"haw" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"haN" = (
/obj/structure/largecrate/random,
/obj/item/trash/pistachios,
@@ -32148,6 +31419,13 @@
icon_state = "floor3"
},
/area/strata/ug/interior/outpost/jung/dorms/admin3)
+"hbh" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small,
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"hcg" = (
/obj/item/tool/pen/blue,
/turf/open/floor/strata{
@@ -32176,6 +31454,10 @@
icon_state = "floor3"
},
/area/strata/ug/interior/outpost/jung/dorms/sec1)
+"heI" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/auto_turf/snow/brown_base/layer1,
+/area/strata/ag/exterior/paths/southresearch)
"heO" = (
/obj/structure/sign/safety/bulkhead_door,
/turf/closed/wall/strata_outpost/reinforced,
@@ -32187,19 +31469,16 @@
/obj/effect/decal/strata_decals/catwalk/prison,
/turf/open/floor/greengrid,
/area/strata/ug/interior/jungle/deep/structures/engi)
-"hfv" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -11
- },
-/obj/structure/mirror{
- pixel_x = -29
+"hfC" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 1
},
/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
+ dir = 10;
+ icon_state = "multi_tiles"
},
-/area/strata/ug/interior/outpost/jung/dorms/admin3)
+/area/strata/ag/interior/outpost/med)
"hgI" = (
/obj/structure/largecrate/random/barrel/green,
/obj/structure/pipes/standard/simple/hidden/cyan,
@@ -32403,6 +31682,15 @@
/obj/item/tool/mop,
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/canteen)
+"hEC" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ag/interior/outpost/med)
"hEF" = (
/obj/structure/inflatable/door,
/turf/open/floor/strata{
@@ -32560,6 +31848,15 @@
"hVm" = (
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ug/interior/outpost/jung/dorms/med1)
+"hVT" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ag/interior/outpost/med)
"hWk" = (
/turf/open/gm/coast/beachcorner2/north_west,
/area/strata/ug/exterior/jungle/deep/carplake_center)
@@ -32645,6 +31942,13 @@
icon_state = "purp2"
},
/area/strata/ug/interior/jungle/deep/structures/engi)
+"idx" = (
+/obj/structure/closet,
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ag/interior/administration)
"idW" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ug/interior/outpost/jung/dorms/sec1)
@@ -32691,6 +31995,17 @@
},
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/admin1)
+"ilj" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/administration)
"ilL" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 5
@@ -32743,6 +32058,12 @@
/obj/item/lightstick,
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/sec1)
+"iqH" = (
+/obj/structure/closet/bodybag,
+/obj/effect/landmark/corpsespawner/scientist,
+/obj/effect/decal/cleanable/blood,
+/turf/open/auto_turf/snow/brown_base/layer3,
+/area/strata/ag/exterior/paths/southresearch)
"iqV" = (
/obj/effect/blocker/sorokyne_cold_water,
/obj/effect/blocker/sorokyne_cold_water,
@@ -32881,6 +32202,17 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
+"ixo" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/med)
"ixu" = (
/obj/effect/blocker/sorokyne_cold_water,
/obj/effect/blocker/sorokyne_cold_water,
@@ -32940,6 +32272,26 @@
/obj/structure/closet/emcloset,
/turf/open/floor/strata,
/area/strata/ag/interior/tcomms)
+"iAP" = (
+/obj/structure/filingcabinet,
+/obj/structure/window/reinforced/tinted,
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
+"iBw" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "xgib6"
+ },
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/admin2)
"iBM" = (
/obj/effect/decal/strata_decals/catwalk/prison,
/obj/structure/disposalpipe/segment{
@@ -32969,6 +32321,15 @@
},
/turf/open/floor/greengrid,
/area/strata/ug/interior/jungle/deep/structures/engi)
+"iCC" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/sec1)
"iDq" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
@@ -33012,6 +32373,13 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/marsh/center)
+"iIF" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/sec1)
"iJh" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/auto_turf/snow/brown_base/layer3,
@@ -33181,6 +32549,16 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/nearlz2)
+"iXi" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/fancy/vials,
+/turf/open/floor/strata{
+ icon_state = "purp2"
+ },
+/area/strata/ug/interior/jungle/deep/structures/engi)
"iXj" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/item/tool/wrench,
@@ -33195,29 +32573,11 @@
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/east_dorms)
-"iZa" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/structure/barricade/handrail/strata{
- dir = 8
- },
-/obj/item/storage/fancy/vials,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ug/interior/outpost/jung/dorms/med2)
"iZr" = (
/turf/open/asphalt/cement{
icon_state = "cement2"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
-"iZw" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/engi/drome)
"iZI" = (
/obj/effect/decal/cleanable/greenglow,
/turf/open/floor/strata,
@@ -33252,6 +32612,15 @@
/obj/effect/blocker/sorokyne_cold_water,
/turf/open/gm/river,
/area/strata/ag/exterior/marsh/water)
+"jcV" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/effect/landmark/wo_supplies/storage/mines,
+/obj/effect/landmark/wo_supplies/storage/mines,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/gen/bball/nest)
"jdC" = (
/obj/structure/window/framed/strata,
/turf/open/floor/strata,
@@ -33319,17 +32688,6 @@
icon_state = "cyan1"
},
/area/strata/ag/interior/outpost/med)
-"jkf" = (
-/obj/structure/closet/secure_closet/medical3{
- req_access = null
- },
-/obj/item/storage/pill_bottle/imidazoline,
-/obj/item/storage/pill_bottle/imidazoline,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
"jkp" = (
/turf/open/floor/strata{
dir = 8;
@@ -33439,11 +32797,24 @@
/obj/structure/sign/safety/biohazard,
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/interior/mountain)
+"jwx" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/med1)
"jxc" = (
/obj/effect/decal/strata_decals/catwalk/prison,
/obj/structure/disposalpipe/segment,
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/admin)
+"jxi" = (
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/engi)
"jyq" = (
/obj/structure/window/framed/strata,
/turf/open/floor/strata{
@@ -33624,12 +32995,26 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/tcomms)
+"jNe" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/structure/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/administration)
"jNJ" = (
/obj/structure/machinery/disposal,
/turf/open/floor/strata{
icon_state = "purp2"
},
/area/strata/ug/interior/jungle/deep/structures/engi)
+"jOa" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata,
+/area/strata/ag/interior/dorms/south)
"jOp" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -33651,6 +33036,17 @@
icon_state = "multi_tiles"
},
/area/strata/ug/interior/jungle/deep/structures/engi)
+"jPx" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/item/lightstick,
+/obj/item/lightstick,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/sec1)
"jPQ" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
@@ -33688,11 +33084,24 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh)
+"jVc" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "purp1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/engi)
"jVg" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/camera/autoname,
/turf/open/asphalt/cement,
/area/strata/ag/exterior/shed_five_caves)
+"jVy" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/med2)
"jVD" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib2"
@@ -33917,15 +33326,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/dorms/flight_control)
-"klG" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/gen/bball)
"kmt" = (
/obj/structure/bed/chair/office/light{
dir = 4
@@ -34096,19 +33496,6 @@
icon_state = "floor3"
},
/area/strata/ug/interior/outpost/jung/dorms/sec1)
-"kEl" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/obj/effect/decal/cleanable/blood{
- icon_state = "xgib6"
- },
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ug/interior/outpost/jung/dorms/admin2)
"kGV" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/auto_turf/strata_grass/layer0,
@@ -34157,6 +33544,17 @@
"kKI" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ug/interior/outpost/jung/dorms/admin1)
+"kKJ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/flashlight/lamp,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/outpost/security)
"kLM" = (
/turf/open/gm/coast/south,
/area/strata/ug/interior/jungle/deep/east_dorms)
@@ -34444,6 +33842,21 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/hotsprings)
+"liP" = (
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"ljg" = (
/obj/structure/closet/secure_closet/personal,
/obj/structure/closet/bodybag/tarp,
@@ -34451,12 +33864,6 @@
icon_state = "darkyellowfull2"
},
/area/strata/ug/interior/outpost/jung/dorms/admin3)
-"lkl" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "purp1"
- },
-/area/strata/ug/interior/jungle/deep/structures/engi)
"lkB" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/closed/wall/wood,
@@ -34486,6 +33893,17 @@
"lmV" = (
/turf/closed/wall/strata_ice/dirty,
/area/strata/ag/exterior/paths/southresearch)
+"lnd" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
"lno" = (
/turf/closed/wall/strata_outpost,
/area/strata/ug/interior/jungle/deep/south_engi)
@@ -34554,6 +33972,14 @@
/obj/effect/spawner/random/tool,
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/sec1)
+"ltN" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/snacks/meatballspagetti,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ag/interior/dorms/canteen)
"ltZ" = (
/obj/structure/bed/roller,
/obj/structure/sink{
@@ -34590,6 +34016,13 @@
"lvF" = (
/turf/open/gm/coast/south,
/area/strata/ug/interior/jungle/deep/tearlake)
+"lws" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/tcomms)
"lwI" = (
/obj/structure/barricade/handrail/strata{
dir = 4
@@ -34798,18 +34231,37 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/marsh)
-"lPk" = (
-/obj/structure/closet/secure_closet/security/soro,
+"lPz" = (
+/obj/structure/closet/secure_closet/medical3{
+ req_access = null
+ },
+/obj/item/explosive/grenade/custom/cleaner,
+/obj/item/explosive/grenade/custom/cleaner,
+/obj/item/storage/pill_bottle/bicaridine/skillless,
/turf/open/floor/strata{
- icon_state = "red1"
+ dir = 10;
+ icon_state = "multi_tiles"
},
-/area/strata/ag/interior/landingzone_checkpoint)
+/area/strata/ag/interior/outpost/med)
"lPF" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "fernybush_3"
},
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/south_dorms)
+"lPK" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
+"lQy" = (
+/obj/structure/closet/crate/science,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/maint/canteen_e_1)
"lQT" = (
/obj/structure/machinery/weather_siren{
dir = 4;
@@ -35243,13 +34695,6 @@
/obj/structure/machinery/weather_siren,
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/exterior/paths/north_outpost)
-"msC" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/tcomms)
"msG" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
/turf/closed/wall/strata_outpost,
@@ -35311,6 +34756,15 @@
/obj/structure/sign/safety/storage,
/turf/closed/wall/strata_outpost,
/area/strata/ag/interior/tcomms)
+"myA" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/snacks/eggplantparm,
+/obj/structure/pipes/standard/simple/hidden/cyan,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan2"
+ },
+/area/strata/ag/interior/dorms/canteen)
"mzp" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -35379,6 +34833,10 @@
icon_state = "cement4"
},
/area/strata/ag/exterior/tcomms/tcomms_deck)
+"mGv" = (
+/obj/structure/largecrate/random,
+/turf/open/asphalt/cement,
+/area/strata/ag/exterior/research_decks)
"mGA" = (
/turf/open/floor/strata{
dir = 8;
@@ -35566,17 +35024,6 @@
/obj/structure/largecrate/random,
/turf/open/asphalt/cement,
/area/strata/ug/interior/jungle/platform/east/scrub)
-"mWM" = (
-/obj/structure/machinery/power/apc{
- dir = 1;
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ug/interior/outpost/jung/dorms/admin2)
"mWT" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -35591,6 +35038,21 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh)
+"mYF" = (
+/obj/structure/barricade/handrail/strata{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"mYN" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/strata{
@@ -35625,6 +35087,12 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
+"ncT" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/dorms/south)
"ndC" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 6
@@ -35644,6 +35112,18 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
+"neu" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/tool/kitchen/utensil/pfork,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"neL" = (
/obj/structure/bed/chair{
dir = 4
@@ -35738,6 +35218,16 @@
/obj/effect/decal/cleanable/blood,
/turf/open/floor/plating,
/area/strata/ag/interior/tcomms)
+"nqm" = (
+/obj/structure/surface/rack,
+/obj/item/explosive/grenade/phosphorus,
+/obj/item/explosive/grenade/phosphorus,
+/obj/item/folder/red,
+/obj/item/ammo_box/magazine/shotgun/buckshot,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/dorms/south)
"nqX" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/auto_turf/strata_grass/layer1,
@@ -35761,6 +35251,11 @@
icon_state = "floor2"
},
/area/strata/ug/interior/outpost/jung/dorms/admin3)
+"nrQ" = (
+/obj/structure/closet/firecloset/full,
+/obj/structure/machinery/light/small,
+/turf/open/asphalt/cement,
+/area/strata/ag/interior/outpost/gen/foyer)
"nsq" = (
/turf/open/gm/coast/south,
/area/strata/ug/interior/jungle/deep/east_carp)
@@ -35776,6 +35271,15 @@
icon_state = "floor2"
},
/area/strata/ug/interior/jungle/deep/structures/engi)
+"ntT" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "xgib2"
+ },
+/obj/item/tool/kitchen/utensil/pknife,
+/turf/open/floor/strata{
+ icon_state = "white_cyan1"
+ },
+/area/strata/ag/interior/dorms)
"nun" = (
/obj/effect/blocker/sorokyne_cold_water,
/obj/structure/platform/strata{
@@ -35804,6 +35308,18 @@
icon_state = "cement3"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
+"nzI" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/structure/machinery/power/apc{
+ dir = 8;
+ pixel_x = -24;
+ start_charge = 0
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/gen/foyer)
"nAf" = (
/turf/open/gm/coast/beachcorner2/south_west,
/area/strata/ug/interior/jungle/deep/east_carp)
@@ -35850,16 +35366,6 @@
},
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/admin1)
-"nEU" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/outpost/med)
"nFN" = (
/obj/structure/machinery/vending/snack,
/turf/open/floor/strata{
@@ -35893,6 +35399,17 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/med)
+"nJa" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/structure/barricade/handrail/strata{
+ dir = 8
+ },
+/obj/item/storage/fancy/vials,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/med2)
"nJK" = (
/turf/closed/wall/strata_ice/dirty,
/area/strata/ag/exterior/marsh)
@@ -35900,19 +35417,27 @@
/obj/structure/machinery/shower,
/turf/open/floor/interior/plastic,
/area/strata/ag/interior/outpost/canteen/personal_storage)
+"nKk" = (
+/obj/structure/machinery/door_control{
+ id = "or01";
+ name = "Surgery Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = 23
+ },
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ag/interior/outpost/med)
"nLG" = (
/obj/structure/bed/chair{
dir = 4
},
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/east_dorms)
-"nOE" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/outpost/gen/bball)
"nPb" = (
/turf/open/gm/coast/beachcorner2/north_east,
/area/strata/ug/interior/jungle/deep/east_carp)
@@ -35951,6 +35476,12 @@
},
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/tearlake)
+"nSb" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ag/interior/outpost/med)
"nSJ" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 9
@@ -36038,6 +35569,13 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh)
+"obG" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/pipes/standard/simple/hidden/cyan,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/dorms/flight_control)
"ocw" = (
/obj/structure/machinery/weather_siren{
dir = 8;
@@ -36094,6 +35632,14 @@
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/tcomms)
+"oeI" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/structure/machinery/power/apc{
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/open/floor/strata,
+/area/strata/ug/interior/outpost/jung/dorms/admin4)
"oeK" = (
/obj/structure/machinery/weather_siren{
pixel_y = -8
@@ -36218,10 +35764,31 @@
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/engi)
+"ors" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"orL" = (
/obj/effect/decal/strata_decals/catwalk/prison,
/turf/open/floor/greengrid,
/area/strata/ag/interior/outpost/engi/drome)
+"orQ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/item/storage/pill_bottle/spaceacillin,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan2"
+ },
+/area/strata/ag/interior/outpost/med)
"orW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -36243,6 +35810,13 @@
icon_state = "cement1"
},
/area/strata/ag/exterior/landingzone_2)
+"ovS" = (
+/obj/structure/filingcabinet,
+/obj/structure/barricade/handrail/strata,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/admin)
"oxE" = (
/obj/structure/surface/rack,
/obj/item/storage/pill_bottle/bicaridine,
@@ -36306,6 +35880,16 @@
icon_state = "cement12"
},
/area/strata/ag/exterior/landingzone_2)
+"oGA" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/strata/ag/interior/outpost/engi/drome/shuttle)
"oGW" = (
/obj/structure/machinery/light/small,
/obj/structure/inflatable/popped,
@@ -36321,14 +35905,6 @@
icon_state = "darkyellowfull2"
},
/area/strata/ag/exterior/research_decks)
-"oIi" = (
-/obj/structure/filingcabinet,
-/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/tcomms)
"oIx" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/spawner/random/tool,
@@ -36385,14 +35961,6 @@
icon_state = "cement12"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
-"oMZ" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/interior/tcomms)
"oOB" = (
/obj/item/clothing/shoes/snow,
/obj/structure/surface/rack,
@@ -36529,15 +36097,6 @@
"oWU" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ug/interior/outpost/jung/dorms/admin2)
-"oXH" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ag/interior/dorms)
"oZt" = (
/obj/structure/machinery/vending/cigarette/colony,
/turf/open/floor/strata{
@@ -36574,6 +36133,12 @@
/obj/structure/cryofeed,
/turf/open/gm/river,
/area/strata/ag/interior/tcomms)
+"pbP" = (
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/med2)
"pdv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/turf/open/auto_turf/strata_grass/layer0_mud,
@@ -36640,6 +36205,13 @@
},
/turf/open/gm/river,
/area/strata/ag/interior/tcomms)
+"pkc" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"pkG" = (
/obj/structure/pipes/standard/manifold/hidden/cyan{
dir = 8
@@ -36726,6 +36298,21 @@
icon_state = "white_cyan3"
},
/area/strata/ag/interior/outpost/med)
+"ppX" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/lamp,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/research_decks/security)
"pqy" = (
/obj/effect/blocker/sorokyne_cold_water,
/obj/structure/platform/strata{
@@ -36768,6 +36355,15 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi/drome)
+"prA" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"psl" = (
/obj/effect/blocker/sorokyne_cold_water,
/obj/structure/platform/strata,
@@ -36956,6 +36552,15 @@
icon_state = "platebot"
},
/area/strata/ag/interior/outpost/engi/drome/shuttle)
+"pDW" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/gen/bball)
"pDY" = (
/obj/structure/platform_decoration/strata/metal{
dir = 1
@@ -36993,6 +36598,17 @@
/obj/structure/barricade/wooden,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
+"pER" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/fancy/cigar,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/landingzone_checkpoint)
"pEY" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/prison{
@@ -37151,6 +36767,12 @@
/obj/structure/flora/grass/ice/brown/snowgrassbb_3,
/turf/open/auto_turf/snow/brown_base/layer3,
/area/strata/ag/exterior/paths/north_outpost)
+"pRQ" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/security)
"pSc" = (
/obj/structure/closet/coffin,
/obj/structure/machinery/light/small,
@@ -37272,6 +36894,21 @@
icon_state = "cement3"
},
/area/strata/ag/exterior/landingzone_2)
+"qcl" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/structure/machinery/door/window/eastright{
+ dir = 2
+ },
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/strata{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/med)
"qcB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/turf/open/auto_turf/strata_grass/layer1,
@@ -37366,6 +37003,12 @@
icon_state = "cement12"
},
/area/strata/ag/exterior/marsh)
+"qjR" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/dorms/flight_control)
"qks" = (
/obj/structure/machinery/light/small,
/turf/open/asphalt/cement{
@@ -37392,6 +37035,20 @@
icon_state = "floor3"
},
/area/strata/ug/interior/outpost/jung/dorms/med1)
+"qlw" = (
+/obj/structure/machinery/computer/station_alert{
+ dir = 4;
+ pixel_x = -10
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/dorms/south)
"qmw" = (
/obj/structure/sign/safety/storage,
/turf/closed/wall/strata_outpost/reinforced/hull,
@@ -37438,6 +37095,20 @@
icon_state = "purp2"
},
/area/strata/ug/interior/jungle/deep/east_engi)
+"qqB" = (
+/obj/structure/toilet,
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -11
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ag/interior/outpost/admin)
"qrz" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/asphalt/cement{
@@ -37526,20 +37197,19 @@
},
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ag/interior/mountain)
-"qzf" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/phone{
- pixel_x = 8;
- pixel_y = 6
+"qye" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "fake_wood"
},
-/obj/item/paper_bin,
-/obj/item/tool/pen/blue,
-/obj/item/storage/pill_bottle/spaceacillin,
+/area/strata/ag/interior/outpost/engi/drome)
+"qzL" = (
+/obj/structure/closet/basketball,
/turf/open/floor/strata{
dir = 4;
- icon_state = "cyan2"
+ icon_state = "cyan1"
},
-/area/strata/ag/interior/outpost/med)
+/area/strata/ag/interior/outpost/gen/bball)
"qAr" = (
/obj/structure/machinery/light/small{
dir = 1;
@@ -37665,6 +37335,13 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/admin)
+"qNI" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ag/interior/outpost/med)
"qNS" = (
/obj/structure/inflatable/popped/door,
/turf/open/floor/strata{
@@ -37733,22 +37410,6 @@
icon_state = "cement15"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
-"qQN" = (
-/obj/structure/closet/bodybag,
-/obj/effect/decal/cleanable/blood/gibs/down,
-/obj/effect/decal/cleanable/blood/gibs/body,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/strata,
-/area/strata/ag/exterior/research_decks)
-"qRj" = (
-/obj/structure/filingcabinet,
-/obj/structure/barricade/handrail/strata{
- dir = 8
- },
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/admin)
"qSo" = (
/turf/closed/shuttle/ert{
icon_state = "upp4"
@@ -37871,6 +37532,13 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh/center)
+"rcb" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ag/interior/outpost/gen/bball)
"rdm" = (
/obj/structure/largecrate/random,
/turf/open/floor/strata,
@@ -37963,6 +37631,30 @@
icon_state = "cement14"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
+"rhR" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/storage/pill_bottle/bicaridine,
+/obj/structure/machinery/door/window/eastright{
+ dir = 8
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/med)
+"riy" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/blood/gibs/core,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ag/interior/dorms)
"riM" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 1
@@ -38030,6 +37722,21 @@
icon_state = "cement4"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
+"rmQ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/gen/foyer)
"rno" = (
/obj/structure/largecrate/random,
/turf/open/floor/strata{
@@ -38099,6 +37806,33 @@
"rvD" = (
/turf/open/gm/coast/beachcorner2/south_west,
/area/strata/ug/interior/jungle/deep/south_engi)
+"rvQ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ dir = 1;
+ icon_state = "white_cyan4"
+ },
+/area/strata/ag/interior/outpost/med)
+"rvY" = (
+/obj/structure/closet/secure_closet/chemical{
+ req_access = null
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/storage/pill_bottle/alkysine,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/med)
"rwD" = (
/obj/effect/decal/cleanable/blood,
/turf/open/floor/strata{
@@ -38121,6 +37855,21 @@
},
/turf/open/floor/plating,
/area/strata/ag/exterior/nearlz2)
+"rye" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/lamp,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/outpost/security)
"ryf" = (
/obj/structure/platform_decoration/strata/metal,
/obj/effect/decal/strata_decals/catwalk/prison,
@@ -38354,6 +38103,12 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/tcomms)
+"rVs" = (
+/obj/structure/closet/secure_closet/security/soro,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/landingzone_checkpoint)
"rWk" = (
/obj/structure/sink{
dir = 8;
@@ -38433,6 +38188,12 @@
"sgG" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/interior/tcomms)
+"sgS" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
"sha" = (
/obj/effect/decal/cleanable/blood,
/turf/open/auto_turf/ice/layer0,
@@ -38459,6 +38220,20 @@
icon_state = "cyan3"
},
/area/strata/ag/interior/outpost/med)
+"siW" = (
+/obj/structure/machinery/blackbox_recorder,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/obj/item/prop/almayer/flight_recorder/colony{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/outpost/admin)
"sjp" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -38543,6 +38318,10 @@
icon_state = "cement9"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
+"soI" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/asphalt/cement,
+/area/strata/ag/exterior/shed_five_caves)
"spp" = (
/obj/item/weapon/gun/pistol/t73,
/obj/effect/decal/cleanable/blood/gibs/core,
@@ -38615,6 +38394,15 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/paths/cabin_area)
+"sxS" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/auto_turf/snow/brown_base/layer2,
+/area/strata/ag/exterior/paths/southresearch)
"sxT" = (
/obj/item/stack/rods,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -38649,6 +38437,16 @@
"sAv" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ug/interior/outpost/jung/dorms/med1)
+"sBa" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "cyan1"
+ },
+/area/strata/ag/interior/outpost/gen/bball)
"sBf" = (
/obj/structure/stairs/perspective{
color = "#6e6e6e";
@@ -38899,6 +38697,14 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/marsh)
+"sYj" = (
+/obj/structure/filingcabinet,
+/obj/structure/pipes/standard/simple/hidden/cyan,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/tcomms)
"sZP" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -38907,13 +38713,6 @@
icon_state = "orange_cover"
},
/area/strata/ag/interior/tcomms)
-"taa" = (
-/obj/structure/filingcabinet,
-/obj/structure/barricade/handrail/strata,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/admin)
"taL" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -38961,12 +38760,6 @@
},
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
-"tfB" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/strata{
- icon_state = "orange_cover"
- },
-/area/strata/ag/exterior/north_lz_caves)
"tfM" = (
/obj/structure/flora/grass/ice/brown/snowgrassbb_1,
/turf/open/auto_turf/snow/brown_base/layer2,
@@ -39035,6 +38828,12 @@
/obj/effect/decal/cleanable/blood/gibs/core,
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/sec1)
+"tjM" = (
+/obj/structure/closet/secure_closet/chemical{
+ req_access = null
+ },
+/turf/open/floor/interior/plastic,
+/area/strata/ag/interior/paths/cabin_area/central)
"tkq" = (
/obj/structure/platform_decoration/strata/metal{
dir = 1
@@ -39141,6 +38940,12 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/marsh/river)
+"trR" = (
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/security)
"tsz" = (
/obj/structure/barricade/handrail/strata{
dir = 8
@@ -39156,6 +38961,14 @@
},
/turf/open/floor/strata,
/area/strata/ag/exterior/research_decks)
+"ttz" = (
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/obj/structure/surface/rack,
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/med)
"ttQ" = (
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/interior/restricted)
@@ -39242,6 +39055,19 @@
/obj/structure/bed/roller,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
+"tCP" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/med)
"tCR" = (
/obj/effect/landmark/hunter_primary,
/turf/open/floor/plating,
@@ -39281,16 +39107,6 @@
/obj/effect/landmark/static_comms/net_two,
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/vanyard)
-"tHx" = (
-/obj/structure/filingcabinet,
-/obj/structure/pipes/standard/simple/hidden/cyan{
- dir = 6
- },
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/interior/tcomms)
"tHE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/pill_bottle/russianRed,
@@ -39401,21 +39217,18 @@
icon_state = "floor3"
},
/area/strata/ug/interior/outpost/jung/dorms/med2)
-"tPl" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ug/interior/outpost/jung/dorms/sec1)
"tPx" = (
/turf/open/floor/strata{
dir = 4;
icon_state = "floor3"
},
/area/strata/ug/interior/outpost/jung/dorms/admin3)
+"tPF" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ag/interior/administration)
"tPN" = (
/turf/closed/wall/strata_ice/jungle,
/area/strata/ug/interior/jungle/deep/west_engi)
@@ -39491,6 +39304,19 @@
/obj/structure/platform/strata,
/turf/open/gm/river,
/area/strata/ag/exterior/marsh/center)
+"tTi" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -11
+ },
+/obj/structure/mirror{
+ pixel_x = -29
+ },
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ug/interior/outpost/jung/dorms/admin3)
"tTk" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
/turf/open/auto_turf/strata_grass/layer1,
@@ -39564,6 +39390,20 @@
"tWY" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/exterior/tcomms/tcomms_deck)
+"tXW" = (
+/obj/structure/barricade/handrail/strata{
+ dir = 8
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/engi)
"tYB" = (
/obj/structure/pipes/standard/manifold/hidden/cyan,
/turf/open/floor/prison{
@@ -39647,17 +39487,6 @@
/obj/effect/decal/cleanable/blood,
/turf/open/floor/strata,
/area/strata/ag/interior/mountain)
-"ueD" = (
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/closet/secure_closet/personal,
-/obj/item/lightstick,
-/obj/item/lightstick,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ug/interior/outpost/jung/dorms/sec1)
"ueK" = (
/obj/effect/particle_effect/steam,
/obj/effect/blocker/sorokyne_cold_water,
@@ -39714,6 +39543,24 @@
/obj/effect/decal/cleanable/blood/gibs/core,
/turf/open/floor/strata,
/area/strata/ag/exterior/research_decks)
+"uhd" = (
+/obj/structure/toilet,
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -11
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/landmark/wo_supplies/storage/belts/medical,
+/obj/item/dogtag,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/weapon/gun/rifle/type71/carbine,
+/turf/open/floor/strata{
+ dir = 8;
+ icon_state = "white_cyan2"
+ },
+/area/strata/ag/interior/outpost/admin)
"uhe" = (
/obj/structure/toilet{
dir = 1
@@ -39731,6 +39578,15 @@
/obj/effect/decal/cleanable/blood/gibs/up,
/turf/open/floor/strata,
/area/strata/ag/exterior/research_decks)
+"uhM" = (
+/obj/structure/barricade/handrail/strata{
+ dir = 8
+ },
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/engi)
"uiE" = (
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
@@ -39785,13 +39641,6 @@
icon_state = "multi_tiles"
},
/area/strata/ag/exterior/vanyard)
-"unO" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan1"
- },
-/area/strata/ug/interior/outpost/jung/dorms/med1)
"uoP" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/asphalt/cement{
@@ -39823,12 +39672,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
-"urF" = (
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
-/area/strata/ug/interior/outpost/jung/dorms/med2)
"urM" = (
/obj/structure/pipes/standard/manifold/hidden/cyan,
/turf/open/floor/strata,
@@ -39929,6 +39772,18 @@
},
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/sec2)
+"uzd" = (
+/obj/structure/closet/secure_closet/medical3{
+ req_access = null
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"uzj" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
@@ -39949,6 +39804,14 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/research_decks)
+"uzL" = (
+/obj/structure/surface/rack,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_hacking,
+/turf/open/floor/strata{
+ icon_state = "orange_cover"
+ },
+/area/strata/ag/interior/outpost/maint/canteen_e_1)
"uBz" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
@@ -40117,6 +39980,16 @@
/obj/effect/decal/cleanable/blood/gibs/core,
/turf/open/floor/strata,
/area/strata/ag/exterior/research_decks)
+"uSg" = (
+/obj/structure/filingcabinet,
+/obj/structure/pipes/standard/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/tcomms)
"uSR" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
@@ -40160,6 +40033,17 @@
icon_state = "cement1"
},
/area/strata/ug/interior/jungle/platform/east/scrub)
+"uWa" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/structure/barricade/handrail/strata,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/outpost/security)
"uWe" = (
/obj/structure/bookcase{
icon_state = "book-5"
@@ -40449,6 +40333,13 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
+"vrR" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/engi/drome)
"vsd" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/light/small{
@@ -40522,6 +40413,16 @@
},
/turf/closed/wall/strata_outpost,
/area/strata/ag/interior/research_decks/security)
+"vuI" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/structure/platform/strata/metal{
+ dir = 4
+ },
+/obj/item/stack/sheet/plasteel/medium_stack,
+/turf/open/floor/strata{
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/engi)
"vuJ" = (
/turf/open/auto_turf/strata_grass/layer0,
/area/strata/ug/interior/jungle/deep/east_engi)
@@ -40546,16 +40447,6 @@
icon_state = "floor3"
},
/area/strata/ag/interior/outpost/med)
-"vvB" = (
-/obj/structure/filingcabinet,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/med)
"vvR" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 9
@@ -40743,12 +40634,6 @@
icon_state = "darkredfull2"
},
/area/strata/ag/interior/landingzone_checkpoint)
-"vMr" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "red1"
- },
-/area/strata/ag/interior/dorms/flight_control)
"vNG" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/strata{
@@ -40911,6 +40796,22 @@
/obj/effect/decal/cleanable/blood,
/turf/open/floor/interior/tatami,
/area/strata/ag/interior/restricted)
+"wfY" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/tool/kitchen/utensil/pfork,
+/obj/item/device/flashlight/lamp,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/research_decks/security)
"wgu" = (
/obj/item/weapon/gun/revolver/cmb,
/turf/open/auto_turf/ice/layer1,
@@ -40924,10 +40825,6 @@
/obj/item/tank/anesthetic,
/turf/open/floor/strata,
/area/strata/ag/interior/mountain)
-"whO" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/strata,
-/area/strata/ag/interior/dorms/south)
"wij" = (
/obj/structure/flora/bush/ausbushes/grassybush,
/turf/open/auto_turf/strata_grass/layer1,
@@ -40940,6 +40837,16 @@
/obj/structure/flora/grass/ice/brown/snowgrassbb_2,
/turf/open/auto_turf/snow/brown_base/layer2,
/area/strata/ag/exterior/marsh/center)
+"wjz" = (
+/obj/structure/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/strata{
+ dir = 4;
+ icon_state = "floor3"
+ },
+/area/strata/ag/interior/outpost/med)
"wkv" = (
/obj/structure/flora/bush/ausbushes/genericbush,
/turf/open/auto_turf/strata_grass/layer1,
@@ -40980,6 +40887,17 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/marsh/center)
+"wqI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/flashlight/lamp,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"wrp" = (
/turf/closed/wall/strata_outpost,
/area/strata/ag/interior/dorms/flight_control)
@@ -41037,16 +40955,6 @@
},
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/security)
-"wuE" = (
-/obj/structure/barricade/handrail/strata{
- dir = 8
- },
-/obj/structure/barricade/handrail/strata,
-/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
-/area/strata/ag/interior/outpost/admin)
"wuI" = (
/turf/open/gm/coast/beachcorner2/north_west,
/area/strata/ug/interior/jungle/deep/east_carp)
@@ -41085,6 +40993,17 @@
icon_state = "floor3"
},
/area/strata/ag/exterior/research_decks)
+"wAb" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/flashlight/lamp,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/engi)
"wAj" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/hazardvest,
@@ -41176,6 +41095,11 @@
/obj/effect/blocker/sorokyne_cold_water,
/turf/open/gm/river,
/area/strata/ag/exterior/marsh)
+"wHg" = (
+/obj/structure/filingcabinet,
+/obj/item/pamphlet/skill/medical,
+/turf/open/floor/strata,
+/area/strata/ag/interior/administration)
"wHW" = (
/turf/open/auto_turf/strata_grass/layer0_mud,
/area/strata/ug/interior/jungle/deep/east_engi)
@@ -41227,13 +41151,27 @@
},
/turf/open/asphalt/cement,
/area/strata/ug/interior/jungle/platform/east/scrub)
-"wUa" = (
-/obj/structure/surface/rack,
+"wTn" = (
+/obj/structure/closet/bodybag,
+/obj/effect/decal/cleanable/blood/gibs/down,
+/obj/effect/decal/cleanable/blood/gibs/body,
+/obj/effect/decal/cleanable/blood/gibs/core,
+/turf/open/floor/strata,
+/area/strata/ag/exterior/research_decks)
+"wUs" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/handset{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/tool/stamp,
+/obj/item/paper_bin,
+/obj/structure/pipes/standard/manifold/hidden/cyan,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
+ icon_state = "red1"
},
-/area/strata/ug/interior/jungle/deep/structures/res)
+/area/strata/ag/interior/outpost/security)
"wVf" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -41464,6 +41402,12 @@
icon_state = "floor3"
},
/area/strata/ag/interior/tcomms)
+"xpC" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/strata{
+ icon_state = "blue1"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"xpK" = (
/obj/structure/machinery/colony_floodlight,
/obj/structure/barricade/handrail/strata,
@@ -41520,6 +41464,17 @@
},
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/admin3)
+"xub" = (
+/obj/structure/closet/secure_closet/medical3{
+ req_access = null
+ },
+/obj/item/storage/pill_bottle/imidazoline,
+/obj/item/storage/pill_bottle/imidazoline,
+/turf/open/floor/strata{
+ dir = 10;
+ icon_state = "multi_tiles"
+ },
+/area/strata/ag/interior/outpost/med)
"xuq" = (
/obj/item/trash/plate{
pixel_x = 1;
@@ -41622,6 +41577,13 @@
icon_state = "multi_tiles"
},
/area/strata/ag/exterior/research_decks)
+"xCm" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/kitchen/knife,
+/turf/open/floor/strata{
+ icon_state = "white_cyan1"
+ },
+/area/strata/ag/interior/dorms/maintenance)
"xCN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/barricade/handrail/strata{
@@ -41648,6 +41610,14 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/dorms/hive)
+"xEj" = (
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/asphalt/cement,
+/area/strata/ag/exterior/paths/adminext)
"xEV" = (
/obj/structure/flora/grass/ice/brown/snowgrassbb_1,
/turf/open/auto_turf/snow/brown_base/layer3,
@@ -41886,6 +41856,17 @@
icon_state = "multi_tiles"
},
/area/strata/ag/interior/outpost/engi/drome)
+"xSh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/research_decks/security)
+"xSB" = (
+/obj/structure/filingcabinet,
+/turf/open/auto_turf/snow/brown_base/layer0,
+/area/strata/ag/interior/outpost/gen/bball/nest)
"xSJ" = (
/turf/open/floor/strata{
dir = 8;
@@ -42024,6 +42005,16 @@
icon_state = "cement4"
},
/area/strata/ag/exterior/landingzone_2)
+"yeF" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/strata{
+ icon_state = "red1"
+ },
+/area/strata/ag/interior/dorms/flight_control)
"ygq" = (
/turf/closed/wall/strata_outpost,
/area/strata/ug/interior/outpost/jung/dorms/admin2)
@@ -42064,6 +42055,15 @@
icon_state = "cyan3"
},
/area/strata/ag/interior/outpost/med)
+"yll" = (
+/obj/structure/filingcabinet,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/turf/open/floor/strata{
+ icon_state = "floor2"
+ },
+/area/strata/ug/interior/jungle/deep/structures/res)
"ylE" = (
/turf/open/gm/coast/beachcorner2/north_west,
/area/strata/ug/interior/jungle/deep/south_engi)
@@ -42706,8 +42706,8 @@ aac
aac
aac
kSU
-ahO
-vMr
+yeF
+qjR
coO
coO
ako
@@ -43095,12 +43095,12 @@ aac
aac
aac
kSU
-ahq
+cYI
ahP
aiw
cof
cjb
-akp
+eEA
coS
cpR
cqE
@@ -43290,7 +43290,7 @@ aac
aac
aac
kSU
-ahq
+cYI
coO
aix
cjb
@@ -43991,7 +43991,7 @@ aac
aac
acX
acX
-acX
+uvZ
acX
aSj
hkA
@@ -44576,7 +44576,7 @@ acX
acX
acX
acX
-acX
+uvZ
acX
acX
aac
@@ -44850,7 +44850,7 @@ aac
aac
aac
kSU
-ahq
+cYI
coO
aix
cjb
@@ -45045,12 +45045,12 @@ aac
aac
aac
kSU
-ahq
+cYI
ahP
aiA
qwM
ajK
-cpE
+obG
akU
alD
cqM
@@ -45436,8 +45436,8 @@ aac
aac
aac
kSU
-ahO
-vMr
+yeF
+qjR
coO
coO
coV
@@ -46823,7 +46823,7 @@ ayj
ctK
aBk
crY
-aDD
+bGe
aEH
crY
crY
@@ -47801,7 +47801,7 @@ ctC
cdH
aEK
aFR
-aHd
+ntT
aIm
fWV
aLg
@@ -48782,7 +48782,7 @@ aJT
aLk
ctC
ctC
-aPb
+ncT
ckX
cov
aSV
@@ -49356,7 +49356,7 @@ cbj
bZV
cew
azI
-oXH
+riy
aCK
cdK
cew
@@ -49372,7 +49372,7 @@ cjw
cov
aLq
cnA
-whO
+jOa
aXD
cjw
aac
@@ -49533,7 +49533,7 @@ agJ
ahu
ahT
agJ
-ajo
+myA
pDJ
akv
alJ
@@ -50152,14 +50152,14 @@ ckX
aRK
ckX
cnA
-whO
-aXH
+jOa
+eRV
cjw
aac
aac
aac
aac
-tfB
+gYs
brn
aYZ
aWp
@@ -50354,7 +50354,7 @@ aac
aac
aac
aac
-tfB
+gYs
brn
aYX
aWp
@@ -50511,7 +50511,7 @@ aiG
bPv
qUW
xSJ
-alc
+ltN
alK
xSJ
anp
@@ -50932,7 +50932,7 @@ aQA
aRK
ckX
cnA
-whO
+jOa
aXJ
cjw
aac
@@ -51147,7 +51147,7 @@ cbu
aac
aac
mfp
-eNF
+pER
iry
cxg
beZ
@@ -52073,7 +52073,7 @@ ajU
alx
alf
anF
-apU
+xCm
asX
aky
avA
@@ -52290,9 +52290,9 @@ aNo
aOB
cjw
aLs
-aMM
+qlw
aNQ
-aPo
+nqm
cjw
clW
aSZ
@@ -52709,7 +52709,7 @@ bcz
cbO
eVA
cwF
-lPk
+rVs
cbO
qjD
bgs
@@ -52874,7 +52874,7 @@ aZP
aZP
aUn
aKb
-aLv
+xEj
aMO
cjA
afS
@@ -52890,7 +52890,7 @@ aWy
bhy
bkt
bnG
-brr
+idx
cfR
bxr
bAB
@@ -53479,7 +53479,7 @@ cfR
buy
brt
bAG
-bFB
+jNe
bIW
coB
baK
@@ -54255,13 +54255,13 @@ beT
bhD
cwe
bnZ
-brw
+tPF
coB
cfR
cfR
bFC
bkx
-bMV
+ilj
bRp
chX
bcg
@@ -55820,7 +55820,7 @@ buT
cqH
csm
bGa
-bJE
+eNX
bwp
aac
aac
@@ -55974,7 +55974,7 @@ aac
aac
aac
adS
-ans
+gxl
bUY
sDs
aqm
@@ -56015,7 +56015,7 @@ bru
ctA
bAM
bGb
-bJF
+wHg
bwp
aac
aac
@@ -56559,9 +56559,9 @@ aac
aac
aac
adS
-anv
+ppX
aou
-apu
+xSh
aqo
arn
bXi
@@ -56836,11 +56836,11 @@ btp
aac
sgG
jVU
-oMZ
+eaq
vlG
vxd
-tHx
-oIi
+uSg
+sYj
yhJ
epm
hTU
@@ -57428,7 +57428,7 @@ tRC
tRC
tRC
kzD
-msC
+lws
vxd
iMP
tRC
@@ -57550,7 +57550,7 @@ aBI
jjJ
jjJ
jjJ
-bnq
+mGv
cfX
aIN
baw
@@ -57590,7 +57590,7 @@ bfg
bgI
xdr
wVU
-fEW
+soI
sau
okE
aac
@@ -58336,7 +58336,7 @@ foN
aKj
cie
ciW
-aNW
+cny
jjJ
aQK
iLJ
@@ -58509,7 +58509,7 @@ aac
aac
aac
adS
-anz
+wfY
bVf
imV
aqo
@@ -58899,7 +58899,7 @@ aac
aac
aac
bUd
-anB
+fso
aoz
apx
aqt
@@ -60291,7 +60291,7 @@ aPz
aQP
aRW
aTp
-aUK
+nrQ
blb
aYx
baq
@@ -60500,7 +60500,7 @@ blb
bxM
bAT
bCq
-bJW
+ixo
vmI
bSI
nUX
@@ -60827,7 +60827,7 @@ aac
rKG
abt
bud
-abK
+jcV
rKG
aac
aac
@@ -61062,7 +61062,7 @@ dgB
irx
aGl
xvy
-aIX
+vuI
aKq
aIV
aMW
@@ -61071,7 +61071,7 @@ aPC
aQV
oKo
aTs
-aUM
+nzI
aWE
aYD
bau
@@ -61120,7 +61120,7 @@ qfN
eFA
uiE
gom
-btx
+heI
blJ
bua
uiE
@@ -61274,7 +61274,7 @@ aUN
aUN
aTy
ghV
-boQ
+ttz
vtz
vlm
bxT
@@ -61445,7 +61445,7 @@ aAR
xvy
axc
ayE
-aAh
+eHW
aHv
aCU
aCU
@@ -61478,7 +61478,7 @@ bTF
vlm
vlm
bSN
-cdC
+rvY
cjO
cnc
cvc
@@ -61677,7 +61677,7 @@ cdD
cjP
cnd
cvd
-fMk
+lPz
jjJ
aGc
foN
@@ -61995,7 +61995,7 @@ rKG
bUX
rKG
cpV
-abu
+fgb
bap
baL
cpV
@@ -62082,7 +62082,7 @@ axu
ybN
bkU
aGP
-bmG
+iqH
bnC
boa
bpo
@@ -62441,7 +62441,7 @@ aYw
aUN
baV
aYw
-bfF
+rmQ
bil
blb
boV
@@ -62784,9 +62784,9 @@ bzH
cdA
cdA
bDU
-nOE
-nOE
-nOE
+rcb
+rcb
+rcb
afM
cck
akR
@@ -62838,7 +62838,7 @@ boY
bsA
bTF
byY
-bBY
+qcl
ryK
ryK
ryK
@@ -62977,7 +62977,7 @@ glG
cpV
uZh
cdA
-adB
+qzL
ccg
ccg
ccg
@@ -63034,9 +63034,9 @@ mZd
bvb
byZ
vlm
-bGx
+rhR
bKC
-bOz
+dJU
vlm
cdT
cjU
@@ -63046,7 +63046,7 @@ vlm
vlm
vlm
oOX
-qQN
+wTn
uTQ
xOs
cuP
@@ -63172,7 +63172,7 @@ rKG
cpV
uZh
cdA
-adB
+qzL
dEa
dEa
dEa
@@ -63367,11 +63367,11 @@ akR
dWm
uZh
cdA
-adB
+qzL
dEa
dEa
kPL
-cch
+sBa
bJb
agf
akR
@@ -63424,7 +63424,7 @@ bsB
bvd
bzb
jsd
-bGy
+gUV
bKL
bOA
vlm
@@ -63813,17 +63813,17 @@ biH
biH
bve
cik
-bCm
+hEC
bGD
-bKM
+nSb
msG
bTE
bTF
cjU
bBT
vlm
-jkf
-jkf
+xub
+xub
ghV
pbC
ras
@@ -63975,9 +63975,9 @@ awJ
aAR
arr
asr
-atF
+uhM
auA
-avS
+tXW
axj
aIV
aAr
@@ -64608,7 +64608,7 @@ mwq
iPd
reS
vmI
-qzf
+orQ
pEo
vmI
uzv
@@ -64618,7 +64618,7 @@ cuP
kzc
blM
bmU
-bnI
+sxS
tBn
uiE
uiE
@@ -64962,16 +64962,16 @@ dgB
aMX
aGy
cik
-qRj
+dpd
aKD
aLT
-qRj
+dpd
aKD
aPK
-qRj
+dpd
aKD
aTG
-wuE
+gzT
aWR
aYL
bbk
@@ -65166,7 +65166,7 @@ blN
blN
aOu
blN
-taa
+ovS
aWR
bll
oSV
@@ -65493,7 +65493,7 @@ rKG
aaG
aam
aam
-abs
+xSB
aam
aam
baH
@@ -65533,7 +65533,7 @@ djW
djW
djW
ijo
-arv
+dfw
asy
ijo
auF
@@ -65751,7 +65751,7 @@ aPL
aRf
aYO
aTI
-taa
+ovS
aWR
aYO
aYK
@@ -65761,8 +65761,8 @@ biV
blU
bpF
mnq
-bvj
-bzg
+qNI
+dah
eSx
bHy
mxu
@@ -65927,7 +65927,7 @@ arw
asA
gAm
cdZ
-avZ
+fSF
aHv
aGx
oKo
@@ -65937,7 +65937,7 @@ oKo
ceI
cdZ
cik
-aJo
+siW
aOu
blN
aTU
@@ -66118,8 +66118,8 @@ aAR
aHh
aHh
cea
-arx
-asB
+pRQ
+wUs
atJ
cdZ
awa
@@ -66155,11 +66155,11 @@ cik
bzh
eSx
bHB
-bKS
-bOH
+hVT
+nKk
bVF
ceG
-ckz
+rvQ
qxt
cnk
cnk
@@ -66336,7 +66336,7 @@ aPO
aRf
bll
bsK
-taa
+ovS
aWR
bll
oSV
@@ -66345,7 +66345,7 @@ bfV
blN
blX
bpI
-bsH
+bOC
cik
bzh
vlm
@@ -66548,7 +66548,7 @@ bzh
bzh
bvK
bWk
-ceZ
+pkc
ckA
cnw
cfg
@@ -66759,7 +66759,7 @@ nST
qON
voe
rUn
-nEU
+wjz
xmR
vlm
mCx
@@ -66955,7 +66955,7 @@ gfC
voe
mCx
vyl
-ggJ
+tCP
vlm
mCx
pSc
@@ -67271,7 +67271,7 @@ adG
dEa
dEa
aeH
-klG
+pDW
afN
agg
cdA
@@ -67285,7 +67285,7 @@ awJ
fwV
cea
cdZ
-aoD
+uWa
gAm
gAm
arz
@@ -67532,7 +67532,7 @@ csQ
bzl
ckH
ueU
-vvB
+hfC
xlg
xlg
wsi
@@ -67700,7 +67700,7 @@ blN
bll
biH
bll
-aTN
+fVR
wdf
aWR
bll
@@ -67916,7 +67916,7 @@ bWB
bvz
ckH
bvz
-cWs
+mYF
bzl
bzl
bzl
@@ -68082,7 +68082,7 @@ cdZ
ceI
cfx
cik
-cgU
+uhd
aKN
bsK
cik
@@ -68286,7 +68286,7 @@ bll
afr
aSk
aRk
-qRj
+dpd
aWV
aYT
apJ
@@ -68465,14 +68465,14 @@ ijo
ijo
caf
ijo
-aAC
+rye
aCc
dWu
cea
ceI
cfx
cik
-aJw
+qqB
aKN
bsK
cik
@@ -68515,7 +68515,7 @@ bCz
snV
srk
iEU
-unO
+jwx
qlq
brd
iEU
@@ -69047,7 +69047,7 @@ arE
asG
asG
ijo
-bYR
+trR
axA
gAm
gAm
@@ -69433,14 +69433,14 @@ awJ
aAR
ijo
aqC
-arF
+fUp
wto
cfx
auM
bZD
cak
aza
-aAG
+kKJ
aCg
aAD
ijo
@@ -69710,7 +69710,7 @@ aad
aad
aad
sHP
-ueD
+jPx
lKv
lJG
lij
@@ -69911,7 +69911,7 @@ rqL
oWO
sHP
iuh
-tPl
+iCC
sHP
aad
aad
@@ -70059,7 +70059,7 @@ orL
csF
gaA
cgP
-clr
+oGA
coA
coA
gMF
@@ -70212,7 +70212,7 @@ ayw
ayw
aoI
apC
-aqE
+sgS
bWN
ijo
ijo
@@ -70234,7 +70234,7 @@ aNv
ckd
ckK
aRn
-aSo
+gdY
ckK
aVy
aXe
@@ -70886,7 +70886,7 @@ sHP
xRr
nnq
lax
-ggr
+iIF
sHP
sHP
aad
@@ -70961,8 +70961,8 @@ aar
aUp
bly
abc
-bob
-abh
+gKP
+tjM
aUp
aac
aac
@@ -71349,7 +71349,7 @@ aUp
bof
bof
aUp
-aeV
+bcn
aYp
bod
aUp
@@ -71579,7 +71579,7 @@ aoJ
apE
bPf
bPf
-asP
+lnd
cdh
auU
ccr
@@ -71986,7 +71986,7 @@ aJF
ccp
aMp
aNy
-aOG
+doA
ckM
aRo
cdh
@@ -72023,8 +72023,8 @@ iDq
bvz
bvz
bCz
-dEy
-iZw
+uzd
+vrR
afG
bWk
xRR
@@ -72129,7 +72129,7 @@ aYo
aYp
aaS
aUp
-blD
+fJV
bmQ
boe
aUp
@@ -72393,7 +72393,7 @@ vOs
btG
bsp
bDz
-bDs
+liP
vOs
bAp
bPA
@@ -72588,7 +72588,7 @@ vOs
btI
bwo
bzt
-bDt
+hbh
vOs
cuH
bQa
@@ -72597,7 +72597,7 @@ bCz
clx
bCK
csQ
-haw
+gCZ
kCf
bCK
bvz
@@ -72773,7 +72773,7 @@ chd
cpU
aVE
aXj
-aZw
+uzL
bbE
cpU
crI
@@ -72826,7 +72826,7 @@ qks
srk
uXg
oWU
-mWM
+fUB
vbI
ygq
ygq
@@ -72975,7 +72975,7 @@ crI
aHP
bmb
vOs
-csT
+qye
bzG
bzt
bDy
@@ -73400,11 +73400,11 @@ bmv
bmv
jWz
vpG
-urF
+pbP
hpD
tPi
sRX
-iZa
+nJa
jWz
rpX
tnM
@@ -73599,14 +73599,14 @@ oyu
jWz
ooj
poc
-aWB
+jVy
jWz
rpX
tnM
uXg
ygq
ygq
-kEl
+iBw
jtB
ygq
lyX
@@ -74459,7 +74459,7 @@ aac
aac
aUp
ahg
-aWZ
+eqY
aUp
aaQ
ahZ
@@ -74521,7 +74521,7 @@ aHP
aKZ
cjn
fKt
-aOL
+lQy
cpU
aHT
aSw
@@ -76479,7 +76479,7 @@ xkj
xkj
aXp
bdj
-bbM
+oeI
beA
bgV
aXp
@@ -76728,7 +76728,7 @@ wXm
wXm
wXm
rxp
-hfv
+tTi
uhe
rxp
uXg
@@ -80618,7 +80618,7 @@ kRO
xwn
pVn
aKF
-lkl
+jVc
khT
gih
vsy
@@ -81394,7 +81394,7 @@ vsy
gih
khT
jNJ
-eyA
+iXi
xgR
uHa
vsy
@@ -83272,7 +83272,7 @@ aeC
abX
akK
uux
-amc
+fmB
bUm
uux
bHj
@@ -83742,9 +83742,9 @@ ntu
ydz
xuq
sXl
-gkA
+wAb
chx
-cTN
+jxi
sXl
gih
vsy
@@ -84245,7 +84245,7 @@ acE
aYz
ajE
aiV
-akM
+ors
aYz
uux
uux
@@ -84427,7 +84427,7 @@ aad
aad
aad
uux
-adR
+neu
aeh
mcD
adz
@@ -84833,7 +84833,7 @@ abX
akK
uux
amg
-wUa
+fIW
uux
aoV
bAr
@@ -85205,9 +85205,9 @@ abE
abT
abE
aYz
-acT
-adx
-adV
+yll
+fTN
+iAP
bAr
bAr
bAr
@@ -85816,7 +85816,7 @@ aqU
uux
abX
aeC
-avj
+wqI
aww
aeB
adz
@@ -87963,7 +87963,7 @@ abX
aiV
aei
aiV
-aye
+fjs
adz
vEp
vEp
@@ -88152,7 +88152,7 @@ abX
ady
bAr
apM
-ara
+lPK
uux
abX
abX
@@ -90287,7 +90287,7 @@ bEE
bEE
afd
bEE
-ajd
+xpC
ajI
ajI
uux
@@ -90478,7 +90478,7 @@ bEE
bEE
afA
aga
-bop
+prA
bEE
bEE
bEE
diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm
index 91450070b8..d1aa245ce2 100644
--- a/maps/map_files/USS_Almayer/USS_Almayer.dmm
+++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm
@@ -530,14 +530,12 @@
},
/area/almayer/hallways/aft_hallway)
"abQ" = (
-/obj/structure/surface/rack,
-/obj/item/clothing/suit/storage/marine/light/vest,
-/obj/item/clothing/suit/storage/marine/light/vest,
/obj/item/device/radio/intercom{
freerange = 1;
name = "General Listening Channel";
pixel_y = 28
},
+/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,
/turf/open/floor/almayer{
icon_state = "redfull"
},
@@ -1574,20 +1572,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/starboard_missiles)
-"afb" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/transmitter{
- dir = 4;
- name = "Starboard Railgun Control Telephone";
- phone_category = "Command";
- phone_id = "Starboard Railgun Control";
- pixel_x = -26
- },
-/obj/item/device/binoculars,
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/shipboard/starboard_missiles)
"afc" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
@@ -2677,13 +2661,6 @@
icon_state = "red"
},
/area/almayer/living/starboard_garden)
-"aiQ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/faxmachine,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"aiR" = (
/obj/structure/stairs{
dir = 8;
@@ -5557,23 +5534,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/pilotbunks)
-"asi" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/transmitter{
- dir = 8;
- name = "OT Telephone";
- phone_category = "Almayer";
- phone_id = "Ordnance Tech";
- pixel_x = 14
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/engineering/engineering_workshop/hangar)
"asj" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -6963,43 +6923,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"avL" = (
-/obj/structure/machinery/door_control{
- id = "ARES StairsUpper";
- name = "ARES Core Access";
- pixel_x = -10;
- pixel_y = -24;
- req_one_access_txt = "91;92"
- },
-/obj/structure/machinery/door_control{
- id = "ARES StairsLock";
- name = "ARES Exterior Lockdown";
- pixel_y = -24;
- req_one_access_txt = "91;92"
- },
-/obj/structure/surface/table/reinforced/almayer_B{
- climbable = 0;
- indestructible = 1;
- unacidable = 1;
- unslashable = 1
- },
-/obj/structure/transmitter/rotary{
- name = "AI Reception Telephone";
- phone_category = "ARES";
- phone_color = "blue";
- phone_id = "AI Reception"
- },
-/obj/structure/machinery/door_control{
- id = "ARES Emergency";
- name = "ARES Emergency Lockdown";
- pixel_x = 10;
- pixel_y = -24;
- req_one_access_txt = "91;92"
- },
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
- },
-/area/almayer/command/airoom)
"avM" = (
/obj/structure/machinery/computer/cameras/almayer/ares{
dir = 8;
@@ -10307,6 +10230,14 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"aIn" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/computerlab)
"aIo" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -10368,28 +10299,6 @@
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
/turf/open/floor/grass,
/area/almayer/living/starboard_garden)
-"aIC" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/transmitter/rotary{
- name = "Researcher Office Telephone";
- phone_category = "Almayer";
- phone_id = "Research";
- pixel_y = 6
- },
-/obj/item/reagent_container/glass/beaker{
- pixel_x = 6;
- pixel_y = -1
- },
-/obj/item/reagent_container/glass/beaker/large{
- pixel_x = -6
- },
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/medical_science)
"aID" = (
/obj/structure/machinery/light{
dir = 1
@@ -10706,6 +10615,32 @@
/obj/docking_port/stationary/escape_pod/east,
/turf/open/floor/plating,
/area/almayer/hull/upper_hull/u_m_p)
+"aJP" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/phone_base/rotary{
+ name = "Telephone";
+ phone_category = "Almayer";
+ phone_id = "Auxiliary Support Office Second Line";
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/structure/phone_base/rotary{
+ name = "Telephone";
+ phone_category = "Almayer";
+ phone_id = "Auxiliary Support Office";
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
"aJU" = (
/turf/open/floor/almayer{
icon_state = "mono"
@@ -12000,19 +11935,6 @@
"aQv" = (
/turf/closed/wall/almayer,
/area/almayer/hallways/starboard_umbilical)
-"aQy" = (
-/obj/structure/transmitter{
- dir = 8;
- name = "RO Office Telephone";
- phone_category = "Offices";
- phone_id = "RO Office";
- pixel_x = 16
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/squads/req)
"aQz" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -17514,13 +17436,6 @@
icon_state = "redfull"
},
/area/almayer/squads/alpha)
-"bti" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
- },
-/area/almayer/command/computerlab)
"btk" = (
/obj/structure/sign/poster/pinup{
pixel_x = -30
@@ -19154,32 +19069,6 @@
},
/turf/open/floor/grass,
/area/almayer/living/starboard_garden)
-"bBD" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/obj/structure/surface/table/almayer,
-/obj/structure/transmitter/rotary{
- name = "Telephone";
- phone_category = "Almayer";
- phone_id = "Auxiliary Support Office Second Line";
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/structure/transmitter/rotary{
- name = "Telephone";
- phone_category = "Almayer";
- phone_id = "Auxiliary Support Office";
- pixel_x = 8;
- pixel_y = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/living/auxiliary_officer_office)
"bBN" = (
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
@@ -20260,6 +20149,9 @@
/area/almayer/squads/req)
"bGz" = (
/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
/turf/open/floor/almayer{
dir = 9;
icon_state = "green"
@@ -22746,9 +22638,7 @@
/turf/closed/wall/almayer,
/area/almayer/squads/req)
"bQS" = (
-/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo{
- icon_state = "req_ammo_wall"
- },
+/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend,
/turf/open/floor/almayer{
icon_state = "green"
},
@@ -24363,9 +24253,7 @@
/turf/open/floor/almayer,
/area/almayer/hallways/vehiclehangar)
"bYa" = (
-/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo{
- icon_state = "req_guns_wall"
- },
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend,
/turf/open/floor/almayer{
dir = 10;
icon_state = "green"
@@ -25691,30 +25579,6 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/hallways/hangar)
-"cdE" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/drinks/cans/waterbottle{
- pixel_x = 9;
- pixel_y = 3
- },
-/obj/item/prop/helmetgarb/flair_io{
- pixel_x = -10;
- pixel_y = 6
- },
-/obj/item/prop/magazine/boots/n160{
- pixel_x = -6;
- pixel_y = -5
- },
-/obj/structure/transmitter/rotary{
- name = "Flight Deck Telephone";
- phone_category = "Almayer";
- phone_id = "Flight Deck";
- pixel_y = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
"cdF" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -28483,6 +28347,15 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
+"cHe" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
"cHl" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -28596,6 +28469,22 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
+"cJq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/mask/cigarette/pipe{
+ pixel_x = 8
+ },
+/obj/structure/phone_base/rotary{
+ name = "Reporter Telephone";
+ phone_category = "Almayer";
+ phone_id = "Reporter";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"cJu" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -28931,6 +28820,16 @@
icon_state = "plate"
},
/area/almayer/hull/lower_hull/l_f_p)
+"cQO" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
"cRb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29673,6 +29572,18 @@
icon_state = "plate"
},
/area/almayer/living/gym)
+"dgm" = (
+/obj/structure/phone_base{
+ name = "Brig Offices Telephone";
+ phone_category = "Almayer";
+ phone_id = "Brig Main Offices";
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
"dgx" = (
/turf/open/floor/almayer{
dir = 8;
@@ -30012,14 +29923,6 @@
icon_state = "plate"
},
/area/almayer/hull/upper_hull/u_a_p)
-"dnm" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "silverfull"
- },
-/area/almayer/command/computerlab)
"dnC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -30119,24 +30022,6 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
-"dpn" = (
-/obj/structure/closet/secure_closet/freezer/fridge/full,
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/item/reagent_container/food/condiment/enzyme,
-/obj/item/reagent_container/food/condiment/enzyme,
-/obj/structure/transmitter{
- name = "Kitchen Telephone";
- phone_category = "Almayer";
- phone_id = "Kitchen";
- pixel_x = -8;
- pixel_y = 29
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/living/grunt_rnr)
"dpo" = (
/obj/structure/machinery/light{
dir = 1
@@ -31596,6 +31481,30 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"dTO" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/overwatch/almayer{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = -17
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Charlie Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Charlie Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
"dTZ" = (
/turf/open/floor/almayer{
icon_state = "sterile_green_side"
@@ -31762,15 +31671,6 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
-"dXo" = (
-/obj/structure/machinery/photocopier,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"dXr" = (
/obj/structure/bed/chair{
dir = 8;
@@ -32085,6 +31985,27 @@
/obj/structure/closet/firecloset,
/turf/open/floor/almayer,
/area/almayer/hallways/vehiclehangar)
+"edW" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/overwatch/almayer{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = 16
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Alpha Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Alpha Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
"eed" = (
/turf/open/floor/almayer{
icon_state = "mono"
@@ -32339,6 +32260,28 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
+"eii" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/phone_base/rotary{
+ name = "Researcher Office Telephone";
+ phone_category = "Almayer";
+ phone_id = "Research";
+ pixel_y = 6
+ },
+/obj/item/reagent_container/glass/beaker{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/reagent_container/glass/beaker/large{
+ pixel_x = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
"eim" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -34008,16 +33951,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"eSJ" = (
-/obj/structure/surface/table/woodentable/fancy,
-/obj/structure/transmitter/rotary{
- name = "Captain's Office";
- phone_category = "Offices";
- phone_id = "Captain's Office";
- pixel_y = 6
- },
-/turf/open/floor/carpet,
-/area/almayer/living/commandbunks)
"eSU" = (
/obj/structure/prop/almayer/name_stencil{
icon_state = "almayer1"
@@ -34285,6 +34218,15 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
+"eYN" = (
+/obj/structure/phone_base/rotary{
+ name = "CL Office Telephone";
+ phone_category = "Almayer";
+ phone_id = "CL Office"
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
"eYQ" = (
/obj/structure/closet/fireaxecabinet{
pixel_x = -32
@@ -34623,17 +34565,6 @@
icon_state = "plating"
},
/area/almayer/command/airoom)
-"ffV" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/crew/alt,
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Brig Cells Telephone";
- phone_category = "Almayer";
- phone_id = "Brig Cells";
- pixel_x = 15
- },
-/turf/open/floor/almayer,
-/area/almayer/shipboard/brig/processing)
"fgh" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -35167,6 +35098,27 @@
icon_state = "plate"
},
/area/almayer/living/gym)
+"fsx" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/overwatch/almayer{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = -17
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Delta Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Delta Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
"fsz" = (
/obj/structure/machinery/firealarm{
dir = 1;
@@ -35249,6 +35201,14 @@
icon_state = "plate"
},
/area/almayer/hull/lower_hull/l_m_p)
+"ftE" = (
+/obj/structure/machinery/faxmachine,
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"fut" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -35326,6 +35286,30 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
+"fvs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = 9;
+ pixel_y = 3
+ },
+/obj/item/prop/helmetgarb/flair_io{
+ pixel_x = -10;
+ pixel_y = 6
+ },
+/obj/item/prop/magazine/boots/n160{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/obj/structure/phone_base/rotary{
+ name = "Flight Deck Telephone";
+ phone_category = "Almayer";
+ phone_id = "Flight Deck";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
"fvu" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
@@ -36473,19 +36457,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/hallways/aft_hallway)
-"fXE" = (
-/obj/structure/surface/table/almayer,
-/obj/item/paper_bin/uscm{
- pixel_y = 6
- },
-/obj/item/tool/pen{
- pixel_x = 4;
- pixel_y = -4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"fXN" = (
/obj/effect/landmark/start/marine/delta,
/obj/effect/landmark/late_join/delta,
@@ -36621,24 +36592,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"gba" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/faxmachine/uscm/command{
- department = "AI Core";
- pixel_y = 8
- },
-/obj/structure/transmitter/rotary{
- name = "AI Core Telephone";
- phone_category = "ARES";
- phone_color = "blue";
- phone_id = "AI Core";
- pixel_x = 8;
- pixel_y = -8
- },
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
- },
-/area/almayer/command/airoom)
"gbg" = (
/obj/structure/sign/safety/terminal{
pixel_x = 14;
@@ -36783,6 +36736,19 @@
icon_state = "silvercorner"
},
/area/almayer/hallways/repair_bay)
+"gdJ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base{
+ dir = 4;
+ name = "Port Railgun Control Telephone";
+ phone_category = "Command";
+ phone_id = "Port Railgun Control";
+ pixel_x = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
"gdS" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -37380,6 +37346,10 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"grz" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
"grG" = (
/obj/structure/sign/safety/restrictedarea{
pixel_x = -17
@@ -37477,19 +37447,6 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
-"gtA" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/transmitter{
- dir = 8;
- name = "Medical Telephone";
- phone_category = "Almayer";
- phone_id = "Medical Lower";
- pixel_x = 16
- },
-/turf/open/floor/almayer{
- icon_state = "sterile_green"
- },
-/area/almayer/medical/lockerroom)
"guc" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
@@ -37782,6 +37739,20 @@
icon_state = "orange"
},
/area/almayer/hallways/starboard_hallway)
+"gyI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/photo_album{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/folder/black{
+ pixel_y = -3;
+ pixel_x = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"gyN" = (
/obj/structure/machinery/prop{
desc = "It's a server box...";
@@ -37837,6 +37808,13 @@
icon_state = "plating"
},
/area/almayer/engineering/engine_core)
+"gzv" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
"gzw" = (
/obj/structure/closet/hydrant{
pixel_x = 30
@@ -39344,13 +39322,6 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/engine_core)
-"hgB" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silvercorner"
- },
-/area/almayer/command/computerlab)
"hgF" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -39681,7 +39652,6 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{
access_modified = 1;
name = "\improper Flight Crew Quarters";
- req_access_txt = null;
req_one_access_txt = "19;22"
},
/turf/open/floor/almayer{
@@ -39936,31 +39906,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/hallways/port_hallway)
-"hvv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/item/clipboard{
- base_pixel_x = 20;
- pixel_x = 5
- },
-/obj/item/paper{
- pixel_x = 5
- },
-/obj/item/tool/pen{
- pixel_x = 5
- },
-/obj/structure/surface/table/reinforced/black,
-/obj/structure/transmitter/rotary{
- name = "CIC Reception Telephone";
- phone_category = "Command";
- phone_id = "CIC Reception";
- pixel_x = -7;
- pixel_y = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/command/cic)
"hvw" = (
/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
/turf/open/floor/plating,
@@ -40119,12 +40064,6 @@
"hyQ" = (
/turf/closed/wall/almayer,
/area/almayer/living/synthcloset)
-"hzb" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/command/combat_correspondent)
"hzc" = (
/turf/closed/wall/almayer/outer,
/area/almayer/engineering/upper_engineering/notunnel)
@@ -40529,6 +40468,14 @@
icon_state = "plate"
},
/area/almayer/hull/upper_hull/u_a_p)
+"hIr" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"hII" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -41306,18 +41253,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"hZU" = (
-/obj/structure/transmitter{
- name = "Brig Offices Telephone";
- phone_category = "Almayer";
- phone_id = "Brig Main Offices";
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/shipboard/brig/main_office)
"iag" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/hand_labeler,
@@ -41753,25 +41688,6 @@
icon_state = "plate"
},
/area/almayer/hull/lower_hull/l_f_s)
-"ijQ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/door_control{
- id = "SEA Office Shutters";
- name = "SEA Office Shutters";
- pixel_y = 12
- },
-/obj/item/ashtray/plastic{
- pixel_x = 8;
- pixel_y = -4
- },
-/obj/structure/transmitter/rotary{
- name = "Senior Enlisted Advisor Office Telephone";
- phone_category = "Almayer";
- phone_id = "Senior Enlisted Advisor's Office";
- pixel_x = -3
- },
-/turf/open/floor/wood/ship,
-/area/almayer/shipboard/sea_office)
"ijU" = (
/obj/item/tool/wet_sign,
/turf/open/floor/plating/plating_catwalk,
@@ -42986,10 +42902,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"iLf" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer,
-/area/almayer/command/computerlab)
"iLh" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 4
@@ -43022,6 +42934,24 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_lobby)
+"iLJ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/phone_base{
+ dir = 1;
+ name = "Brig Warden's Office Telephone";
+ phone_category = "Offices";
+ phone_id = "Brig Warden's Office";
+ pixel_x = -16
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
"iLO" = (
/turf/open/floor/almayer{
dir = 4;
@@ -43494,6 +43424,15 @@
icon_state = "kitchen"
},
/area/almayer/engineering/upper_engineering)
+"iWZ" = (
+/obj/structure/machinery/photocopier,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"iXb" = (
/obj/structure/bed/chair/comfy/delta{
dir = 8
@@ -43984,18 +43923,6 @@
icon_state = "orange"
},
/area/almayer/engineering/engine_core)
-"jfY" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/landmark/map_item,
-/obj/item/folder/red,
-/obj/structure/transmitter/rotary{
- name = "Brig CMP's Office Telephone";
- phone_category = "Offices";
- phone_id = "Brig CMP's Office";
- pixel_x = 15
- },
-/turf/open/floor/almayer,
-/area/almayer/shipboard/brig/chief_mp_office)
"jfZ" = (
/obj/structure/target{
name = "punching bag"
@@ -44515,6 +44442,31 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/command/cic)
+"jod" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/item/clipboard{
+ base_pixel_x = 20;
+ pixel_x = 5
+ },
+/obj/item/paper{
+ pixel_x = 5
+ },
+/obj/item/tool/pen{
+ pixel_x = 5
+ },
+/obj/structure/surface/table/reinforced/black,
+/obj/structure/phone_base/rotary{
+ name = "CIC Reception Telephone";
+ phone_category = "Command";
+ phone_id = "CIC Reception";
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
"jox" = (
/obj/structure/machinery/brig_cell/cell_3{
pixel_x = -32
@@ -44870,6 +44822,11 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
+"jzy" = (
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/computerlab)
"jzD" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -45209,6 +45166,18 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/general_equipment)
+"jJr" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/landmark/map_item,
+/obj/item/folder/red,
+/obj/structure/phone_base/rotary{
+ name = "Brig CMP's Office Telephone";
+ phone_category = "Offices";
+ phone_id = "Brig CMP's Office";
+ pixel_x = 15
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
"jJs" = (
/turf/open/floor/almayer{
icon_state = "green"
@@ -45981,24 +45950,6 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"jZL" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/cameras/almayer_network{
- dir = 1
- },
-/obj/structure/machinery/light{
- unacidable = 1;
- unslashable = 1
- },
-/obj/structure/transmitter{
- dir = 1;
- name = "Brig Warden's Office Telephone";
- phone_category = "Offices";
- phone_id = "Brig Warden's Office";
- pixel_x = -16
- },
-/turf/open/floor/almayer,
-/area/almayer/shipboard/brig/main_office)
"jZO" = (
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
@@ -46096,24 +46047,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/upper_hull/u_a_p)
-"kaS" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/obj/structure/surface/table/almayer,
-/obj/item/device/camera{
- pixel_x = -9;
- pixel_y = 16
- },
-/obj/item/storage/photo_album{
- pixel_x = -6;
- pixel_y = -17
- },
-/obj/item/clothing/mask/cigarette/pipe,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"kbc" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -46295,25 +46228,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/processing)
-"kgp" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/transmitter{
- name = "CMO Office Telephone";
- phone_category = "Offices";
- phone_id = "CMO Office";
- pixel_y = 29
- },
-/obj/structure/sign/safety/commline_connection{
- pixel_x = 23;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/upper_medical)
"kgr" = (
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
@@ -46748,6 +46662,14 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/aft_hallway)
+"kqn" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"kqt" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
@@ -48100,18 +48022,6 @@
icon_state = "red"
},
/area/almayer/hallways/aft_hallway)
-"kSU" = (
-/obj/structure/transmitter/no_dnd{
- name = "Requisition Telephone";
- phone_category = "Almayer";
- phone_id = "Requisition";
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/squads/req)
"kTc" = (
/obj/structure/closet/secure_closet/guncabinet/red,
/obj/item/ammo_magazine/shotgun,
@@ -48195,7 +48105,6 @@
access_modified = 1;
dir = 1;
name = "\improper Flight Crew Quarters";
- req_access_txt = null;
req_one_access_txt = "19;22"
},
/turf/open/floor/almayer{
@@ -48757,6 +48666,19 @@
},
/turf/open/floor/almayer,
/area/almayer/living/numbertwobunks)
+"lgS" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/phone_base{
+ dir = 8;
+ name = "Medical Telephone";
+ phone_category = "Almayer";
+ phone_id = "Medical Lower";
+ pixel_x = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
"lgX" = (
/obj/structure/sign/safety/storage{
pixel_y = 32
@@ -49397,12 +49319,31 @@
},
/turf/open/floor/plating,
/area/almayer/hull/upper_hull/u_m_p)
-"ltU" = (
-/obj/structure/filingcabinet,
+"ltP" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -6;
+ pixel_y = 28
+ },
+/obj/structure/machinery/firealarm{
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base/rotary{
+ name = "Intelligence Center Telephone";
+ phone_category = "Almayer";
+ phone_id = "Intelligence Center Telephone"
+ },
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4;
+ pixel_x = -17
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "silverfull"
},
-/area/almayer/command/combat_correspondent)
+/area/almayer/command/securestorage)
"ltX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -49875,6 +49816,14 @@
icon_state = "mono"
},
/area/almayer/hallways/aft_hallway)
+"lDf" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"lDg" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "laddernorthwest";
@@ -50567,6 +50516,23 @@
icon_state = "green"
},
/area/almayer/hallways/port_hallway)
+"lRa" = (
+/obj/structure/closet/secure_closet,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/storage/box/tapes,
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/suit/storage/marine/light/reporter,
+/obj/item/clothing/head/helmet/marine/reporter,
+/obj/item/clothing/head/cmcap/reporter,
+/obj/item/device/flashlight,
+/obj/item/device/toner,
+/obj/item/device/toner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"lRs" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -50669,27 +50635,6 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"lVX" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/overwatch/almayer{
- dir = 8;
- layer = 3.2;
- pixel_x = -17;
- pixel_y = 16
- },
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Alpha Overwatch Telephone";
- phone_category = "Command";
- phone_id = "Alpha Overwatch"
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = -17;
- pixel_y = -8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/cic)
"lWh" = (
/obj/structure/machinery/pipedispenser/orderable,
/turf/open/floor/almayer{
@@ -50893,6 +50838,25 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower_engineering)
+"mbI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "SEA Office Shutters";
+ name = "SEA Office Shutters";
+ pixel_y = 12
+ },
+/obj/item/ashtray/plastic{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/structure/phone_base/rotary{
+ name = "Senior Enlisted Advisor Office Telephone";
+ phone_category = "Almayer";
+ phone_id = "Senior Enlisted Advisor's Office";
+ pixel_x = -3
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
"mce" = (
/turf/open/floor/almayer{
icon_state = "greencorner"
@@ -51457,15 +51421,6 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"moU" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "plating_striped"
- },
-/area/almayer/squads/req)
"moY" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/almayer,
@@ -52295,6 +52250,19 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
+"mJb" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"mJe" = (
/obj/structure/sign/safety/conference_room{
pixel_x = -17;
@@ -52538,10 +52506,22 @@
icon_state = "orange"
},
/area/almayer/hallways/stern_hallway)
+"mMk" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"mMP" = (
/obj/effect/landmark/start/intel,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/port_atmos)
+"mMU" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
"mMV" = (
/obj/structure/pipes/vents/scrubber,
/obj/item/device/radio/intercom{
@@ -53501,6 +53481,12 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
+"nib" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/combat_correspondent)
"nig" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -53582,6 +53568,24 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
+"niZ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/faxmachine/uscm/command{
+ department = "AI Core";
+ pixel_y = 8
+ },
+/obj/structure/phone_base/rotary{
+ name = "AI Core Telephone";
+ phone_category = "ARES";
+ phone_color = "blue";
+ phone_id = "AI Core";
+ pixel_x = 8;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
"nja" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -54502,15 +54506,6 @@
icon_state = "redfull"
},
/area/almayer/hull/lower_hull/l_f_s)
-"nDh" = (
-/obj/structure/transmitter/rotary{
- name = "CL Office Telephone";
- phone_category = "Almayer";
- phone_id = "CL Office"
- },
-/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/carpet,
-/area/almayer/command/corporateliason)
"nDo" = (
/obj/structure/closet/l3closet/general,
/obj/structure/window/reinforced{
@@ -54852,6 +54847,43 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
+"nKQ" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsUpper";
+ name = "ARES Core Access";
+ pixel_x = -10;
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLock";
+ name = "ARES Exterior Lockdown";
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/obj/structure/surface/table/reinforced/almayer_B{
+ climbable = 0;
+ indestructible = 1;
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/phone_base/rotary{
+ name = "AI Reception Telephone";
+ phone_category = "ARES";
+ phone_color = "blue";
+ phone_id = "AI Reception"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Emergency";
+ name = "ARES Emergency Lockdown";
+ pixel_x = 10;
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
"nLa" = (
/obj/structure/bed/chair{
dir = 4
@@ -54920,6 +54952,18 @@
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer,
/area/almayer/hull/upper_hull/u_f_p)
+"nLT" = (
+/obj/structure/phone_base/no_dnd{
+ name = "Requisition Telephone";
+ phone_category = "Almayer";
+ phone_id = "Requisition";
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
"nLZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -55313,6 +55357,15 @@
},
/turf/open/floor/almayer,
/area/almayer/hull/upper_hull/u_f_s)
+"nUF" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"nVe" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/sign/safety/bridge{
@@ -55446,11 +55499,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
-"nYf" = (
-/turf/open/floor/almayer{
- icon_state = "silverfull"
- },
-/area/almayer/command/securestorage)
"nYh" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/turf/open/floor/almayer{
@@ -55746,6 +55794,13 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/processing)
+"oeJ" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
"oeL" = (
/obj/structure/machinery/vending/coffee{
density = 0;
@@ -56350,6 +56405,9 @@
id = "req_belt"
},
/obj/structure/plasticflaps,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
/turf/open/floor/almayer,
/area/almayer/squads/req)
"oqZ" = (
@@ -57235,18 +57293,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/upper_hull/u_a_p)
-"oLg" = (
-/obj/structure/machinery/conveyor{
- id = "req_belt"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/squads/req)
"oLi" = (
/obj/effect/landmark/start/marine/medic/bravo,
/obj/effect/landmark/late_join/bravo,
@@ -57547,6 +57593,28 @@
icon_state = "silver"
},
/area/almayer/living/auxiliary_officer_office)
+"oRi" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/overwatch/almayer{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = 15
+ },
+/obj/structure/machinery/light,
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Bravo Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Bravo Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
"oRj" = (
/obj/structure/stairs{
icon_state = "ramptop"
@@ -58199,21 +58267,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"phj" = (
-/obj/item/clothing/head/helmet/marine/reporter,
-/obj/item/clothing/suit/storage/marine/light/reporter,
-/obj/item/clothing/head/cmcap/reporter,
-/obj/item/clothing/head/fedora,
-/obj/structure/closet/secure_closet,
-/obj/item/storage/box/tapes,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"piO" = (
/obj/structure/surface/rack,
/obj/item/tool/weldingtool,
@@ -58301,6 +58354,24 @@
icon_state = "redfull"
},
/area/almayer/squads/alpha_bravo_shared)
+"plb" = (
+/obj/structure/closet/secure_closet/freezer/fridge/full,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/reagent_container/food/condiment/enzyme,
+/obj/item/reagent_container/food/condiment/enzyme,
+/obj/structure/phone_base{
+ name = "Kitchen Telephone";
+ phone_category = "Almayer";
+ phone_id = "Kitchen";
+ pixel_x = -8;
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
"plE" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -58695,31 +58766,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/charlie)
-"pvK" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_x = -6;
- pixel_y = 28
- },
-/obj/structure/machinery/firealarm{
- pixel_x = 8;
- pixel_y = 28
- },
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/transmitter/rotary{
- name = "Intelligence Center Telephone";
- phone_category = "Almayer";
- phone_id = "Intelligence Center Telephone"
- },
-/obj/structure/machinery/computer/cameras/almayer/vehicle{
- dir = 4;
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "silverfull"
- },
-/area/almayer/command/securestorage)
"pvP" = (
/turf/open/floor/almayer{
dir = 1;
@@ -59197,6 +59243,16 @@
/obj/item/storage/box/lights/mixed,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/lower_hull/l_f_s)
+"pGQ" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = 7;
+ pixel_y = 29
+ },
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"pGT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -59915,6 +59971,11 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/engineering_workshop)
+"pWp" = (
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
"pWr" = (
/obj/structure/surface/rack,
/obj/item/tool/minihoe{
@@ -60243,6 +60304,20 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/starboard_hallway)
+"qcn" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base{
+ dir = 4;
+ name = "Starboard Railgun Control Telephone";
+ phone_category = "Command";
+ phone_id = "Starboard Railgun Control";
+ pixel_x = -26
+ },
+/obj/item/device/binoculars,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
"qcy" = (
/obj/structure/sign/safety/bathunisex{
pixel_x = 8;
@@ -60701,6 +60776,14 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/sea_office)
+"qlX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"qmk" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -61379,15 +61462,6 @@
icon_state = "emeraldfull"
},
/area/almayer/squads/charlie_delta_shared)
-"qyZ" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "silverfull"
- },
-/area/almayer/command/securestorage)
"qzc" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -61966,13 +62040,6 @@
dir = 4
},
/area/almayer/command/airoom)
-"qLV" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/command/computerlab)
"qMe" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/tool/minihoe{
@@ -63319,6 +63386,13 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
+"rpM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/taperecorder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"rpW" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12
@@ -63407,6 +63481,47 @@
icon_state = "test_floor4"
},
/area/almayer/living/bridgebunks)
+"rrI" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door_control{
+ id = "CIC Lockdown";
+ name = "CIC Lockdown";
+ pixel_x = -7;
+ pixel_y = 9;
+ req_access_txt = "1"
+ },
+/obj/structure/machinery/door_control{
+ id = "Hangar Lockdown";
+ name = "Hangar Lockdown";
+ pixel_x = -7;
+ pixel_y = 2;
+ req_access_txt = "1"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4;
+ icon_state = "exposed01-supply"
+ },
+/obj/structure/machinery/door_control{
+ id = "bot_armory";
+ name = "Armory Lockdown";
+ pixel_x = -7;
+ pixel_y = -5;
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Combat Information Center Telephone";
+ phone_category = "Command";
+ phone_id = "Combat Information Center";
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/structure/machinery/door/window/westright{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
"rrK" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -63663,9 +63778,7 @@
},
/area/almayer/lifeboat_pumps/north1)
"ryR" = (
-/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
- req_access = list(1)
- },
+/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,
/turf/open/floor/almayer{
icon_state = "redfull"
},
@@ -64035,11 +64148,6 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"rEL" = (
-/turf/open/floor/almayer{
- icon_state = "silverfull"
- },
-/area/almayer/command/computerlab)
"rEY" = (
/obj/structure/surface/table/almayer,
/obj/item/toy/deck,
@@ -64800,6 +64908,25 @@
icon_state = "test_floor4"
},
/area/almayer/squads/delta)
+"rYd" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/phone_base{
+ name = "CMO Office Telephone";
+ phone_category = "Offices";
+ phone_id = "CMO Office";
+ pixel_y = 29
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = 23;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
"rYi" = (
/obj/structure/bed/chair,
/obj/structure/machinery/power/apc/almayer{
@@ -65432,27 +65559,6 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
-"snI" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/overwatch/almayer{
- dir = 8;
- layer = 3.2;
- pixel_x = -17;
- pixel_y = -17
- },
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Delta Overwatch Telephone";
- phone_category = "Command";
- phone_id = "Delta Overwatch"
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = -17;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/cic)
"snM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -65740,6 +65846,16 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/shipboard/navigation)
+"sth" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/structure/phone_base/rotary{
+ name = "Captain's Office";
+ phone_category = "Offices";
+ phone_id = "Captain's Office";
+ pixel_y = 6
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
"sti" = (
/obj/structure/closet/crate/trashcart,
/obj/effect/spawner/random/balaclavas,
@@ -66522,6 +66638,28 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/starboard_hallway)
+"sLW" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera{
+ pixel_x = -8;
+ pixel_y = 12
+ },
+/obj/item/paper_bin/uscm{
+ pixel_y = 6;
+ pixel_x = 6
+ },
+/obj/item/tool/pen{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = -8;
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"sMs" = (
/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
dir = 1
@@ -66781,30 +66919,6 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"sSG" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/overwatch/almayer{
- dir = 8;
- layer = 3.2;
- pixel_x = -17;
- pixel_y = -17
- },
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Charlie Overwatch Telephone";
- phone_category = "Command";
- phone_id = "Charlie Overwatch"
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = -17;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/cic)
"sSR" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -66952,6 +67066,17 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cryo)
+"sVS" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/crew/alt,
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Brig Cells Telephone";
+ phone_category = "Almayer";
+ phone_id = "Brig Cells";
+ pixel_x = 15
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
"sWW" = (
/obj/structure/machinery/flasher{
alpha = 1;
@@ -67494,6 +67619,19 @@
icon_state = "plating"
},
/area/almayer/shipboard/brig/armory)
+"tgd" = (
+/obj/structure/phone_base{
+ dir = 8;
+ name = "RO Office Telephone";
+ phone_category = "Offices";
+ phone_id = "RO Office";
+ pixel_x = 16
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
"tgK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -67578,27 +67716,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha)
-"tii" = (
-/obj/structure/machinery/firealarm{
- pixel_x = 6;
- pixel_y = 28
- },
-/obj/structure/bed/chair/office/dark{
- dir = 4;
- layer = 3.25
- },
-/obj/structure/transmitter{
- name = "CE Office Telephone";
- phone_category = "Offices";
- phone_id = "CE Office";
- pixel_x = -8;
- pixel_y = 29
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
-/area/almayer/engineering/ce_room)
"tim" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -68248,6 +68365,13 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
+"tuX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4;
+ icon_state = "exposed01-supply"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/combat_correspondent)
"tuZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -69504,6 +69628,15 @@
icon_state = "test_floor4"
},
/area/almayer/living/bridgebunks)
+"tZa" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/ares_console{
+ pixel_x = 9
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
"tZc" = (
/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
@@ -69687,28 +69820,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
-"ucz" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/overwatch/almayer{
- dir = 8;
- layer = 3.2;
- pixel_x = -17;
- pixel_y = 15
- },
-/obj/structure/machinery/light,
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Bravo Overwatch Telephone";
- phone_category = "Command";
- phone_id = "Bravo Overwatch"
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = -17;
- pixel_y = -8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/cic)
"udi" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -71025,10 +71136,6 @@
icon_state = "orange"
},
/area/almayer/hallways/stern_hallway)
-"uBM" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/command/combat_correspondent)
"uBN" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -72160,6 +72267,9 @@
/area/almayer/squads/bravo)
"vbR" = (
/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
/turf/open/floor/almayer{
dir = 5;
icon_state = "green"
@@ -73686,14 +73796,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/hydroponics)
-"vEf" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"vEj" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12
@@ -73802,15 +73904,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/numbertwobunks)
-"vHa" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/ares_console{
- pixel_x = 9
- },
-/turf/open/floor/almayer/no_build{
- icon_state = "plating"
- },
-/area/almayer/command/airoom)
"vHh" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/tool/warning_cone{
@@ -73845,47 +73938,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/starboard_hallway)
-"vHt" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/door_control{
- id = "CIC Lockdown";
- name = "CIC Lockdown";
- pixel_x = -7;
- pixel_y = 9;
- req_access_txt = "1"
- },
-/obj/structure/machinery/door_control{
- id = "Hangar Lockdown";
- name = "Hangar Lockdown";
- pixel_x = -7;
- pixel_y = 2;
- req_access_txt = "1"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4;
- icon_state = "exposed01-supply"
- },
-/obj/structure/machinery/door_control{
- id = "bot_armory";
- name = "Armory Lockdown";
- pixel_x = -7;
- pixel_y = -5;
- req_one_access_txt = "1;4"
- },
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Combat Information Center Telephone";
- phone_category = "Command";
- phone_id = "Combat Information Center";
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/structure/machinery/door/window/westright{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/cic)
"vHO" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -75400,6 +75452,23 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
+"wke" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/phone_base{
+ dir = 8;
+ name = "OT Telephone";
+ phone_category = "Almayer";
+ phone_id = "Ordnance Tech";
+ pixel_x = 14
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
"wky" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -75717,27 +75786,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/stern_hallway)
-"wqr" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/emails{
- pixel_x = 2;
- pixel_y = 5
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 7;
- pixel_y = 29
- },
-/obj/structure/transmitter/rotary{
- name = "Reporter Telephone";
- phone_category = "Almayer";
- phone_id = "Reporter";
- pixel_x = -17;
- pixel_y = 2
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"wqu" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -76061,6 +76109,27 @@
icon_state = "plate"
},
/area/almayer/medical/lower_medical_medbay)
+"wxJ" = (
+/obj/structure/machinery/firealarm{
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4;
+ layer = 3.25
+ },
+/obj/structure/phone_base{
+ name = "CE Office Telephone";
+ phone_category = "Offices";
+ phone_id = "CE Office";
+ pixel_x = -8;
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
"wxU" = (
/obj/item/ashtray/bronze{
pixel_x = 7;
@@ -76452,11 +76521,12 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
"wGI" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
- dir = 4
+ dir = 8
},
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/shipboard/port_missiles)
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
"wGX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -79219,15 +79289,6 @@
"xMs" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/operating_room_two)
-"xMt" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "plating_striped"
- },
-/area/almayer/squads/req)
"xMA" = (
/obj/structure/machinery/computer/med_data,
/obj/structure/sign/safety/terminal{
@@ -79463,16 +79524,6 @@
icon_state = "emeraldcorner"
},
/area/almayer/squads/charlie)
-"xRk" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/command/computerlab)
"xRw" = (
/turf/open/floor/almayer/uscm/directional{
dir = 1
@@ -79693,14 +79744,6 @@
icon_state = "plate"
},
/area/almayer/hull/upper_hull/u_m_s)
-"xUV" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/command/combat_correspondent)
"xVc" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/machinery/door_control{
@@ -80025,19 +80068,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/lower_hull/l_a_s)
-"ybZ" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/transmitter{
- dir = 4;
- name = "Port Railgun Control Telephone";
- phone_category = "Command";
- phone_id = "Port Railgun Control";
- pixel_x = -26
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/shipboard/port_missiles)
"ycd" = (
/obj/structure/bed/chair{
dir = 8;
@@ -88075,7 +88105,7 @@ aTg
pdG
vAG
dOL
-jfY
+jJr
hwS
wly
wIC
@@ -90501,7 +90531,7 @@ vBm
vBm
vBm
vBm
-hZU
+dgm
mLJ
fkn
gaJ
@@ -91526,13 +91556,13 @@ gaJ
gaJ
tRA
lMc
-ffV
+sVS
cMl
oeB
rkL
ldu
eRL
-jZL
+iLJ
vBm
qJZ
ohJ
@@ -93850,7 +93880,7 @@ dqd
uNL
hJp
kcp
-bBD
+aJP
bTS
bTS
lxo
@@ -96374,7 +96404,7 @@ aaa
aaa
aad
aeE
-afb
+qcn
ayq
cfE
cfE
@@ -96422,7 +96452,7 @@ btD
rVN
rVN
vly
-ybZ
+gdJ
pun
ajZ
aaa
@@ -97635,7 +97665,7 @@ vcK
mBA
kCi
kCi
-wGI
+kCi
kCi
vmW
nIE
@@ -97838,7 +97868,7 @@ ukU
bfP
fvv
vcK
-vcK
+wGI
tuA
tuA
tuA
@@ -99036,9 +99066,9 @@ wVW
wVW
wVW
swH
-ucz
+oRi
wVW
-sSG
+dTO
sEM
wVW
wVW
@@ -99237,13 +99267,13 @@ apo
fHh
wVW
lZs
-lVX
+edW
sni
ayz
dAX
aQg
vpV
-snI
+fsx
aGp
wVW
aDv
@@ -100848,7 +100878,7 @@ agj
eYC
agc
fNb
-eSJ
+sth
agc
agc
hvH
@@ -100864,7 +100894,7 @@ wVW
rOC
soX
azX
-vHt
+rrI
aCb
aDv
aEC
@@ -101757,7 +101787,7 @@ nXP
mNf
hJp
uNL
-cdE
+fvs
xSI
uZQ
aoH
@@ -102692,7 +102722,7 @@ aCj
ayK
aAd
aAP
-hvv
+jod
ayu
aCj
bYY
@@ -106453,7 +106483,7 @@ qyD
omo
blZ
bqN
-gtA
+lgS
bqN
bwR
gfW
@@ -107682,7 +107712,7 @@ mWw
apT
apA
arC
-asi
+wke
cSN
asy
atw
@@ -109392,7 +109422,7 @@ ajl
vtx
ajl
ajl
-kgp
+rYd
fbB
cyU
bho
@@ -111424,7 +111454,7 @@ lMv
dVu
eSo
qmD
-aIC
+eii
lJv
aCt
kXw
@@ -112355,7 +112385,7 @@ vzP
bJt
hjB
bJt
-dpn
+plb
bDs
gSk
bDs
@@ -112454,7 +112484,7 @@ bqy
bYj
eUR
bsd
-nDh
+eYN
bYj
xne
cNH
@@ -118530,8 +118560,8 @@ avK
aqU
aCZ
dgg
-xRk
-bti
+cQO
+gzv
aHq
sDC
ajt
@@ -119338,7 +119368,7 @@ mLE
tmK
avK
aug
-avL
+nKQ
aqU
lyE
rsO
@@ -119940,18 +119970,18 @@ uLu
anC
aiC
ioU
-pvK
+ltP
qPE
xqD
-nYf
-rEL
-dnm
-rEL
-rEL
+pWp
+jzy
+aIn
+jzy
+jzy
aHq
cnE
liJ
-hgB
+mMU
cbn
aHq
uLu
@@ -120143,7 +120173,7 @@ aSz
anG
aiC
ioU
-qyZ
+cHe
wTd
cmK
lFm
@@ -120964,7 +120994,7 @@ oeM
eed
oeM
eed
-iLf
+grz
aRi
aGN
qrv
@@ -121167,7 +121197,7 @@ fXx
kXf
huO
iLO
-qLV
+oeJ
xNv
iLO
bUa
@@ -121465,7 +121495,7 @@ bdj
bri
bLX
bdl
-kSU
+nLT
bNP
bmD
bNP
@@ -122693,7 +122723,7 @@ bxg
bZr
bNQ
bNQ
-xMt
+bNQ
bGz
hMs
cbw
@@ -122896,7 +122926,7 @@ bxh
bZr
krN
krN
-oLg
+krN
oqY
can
buH
@@ -123003,9 +123033,9 @@ alG
anG
apf
oIB
-oIB
-oIB
-oIB
+sLW
+cJq
+gyI
oIB
sFR
vuv
@@ -123099,7 +123129,7 @@ bxg
bZr
ibc
uly
-moU
+bNN
vbR
pky
cbv
@@ -123206,9 +123236,9 @@ alG
aYD
uPI
oIB
-fXE
-kaS
-aiQ
+mJb
+hIr
+ftE
oIB
sFR
vuv
@@ -123409,9 +123439,9 @@ sUF
anG
apd
oIB
-wqr
-hzb
-xUV
+pGQ
+bZw
+kqn
oIB
sFR
hPo
@@ -123613,8 +123643,8 @@ aYD
aTS
qgK
tEB
-uBM
-dXo
+nib
+rpM
oIB
lBR
nVu
@@ -123816,8 +123846,8 @@ anG
mPX
oIB
wKF
-bZw
-ltU
+tuX
+lDf
oIB
fbx
cFA
@@ -124018,9 +124048,9 @@ aSC
aZH
iAB
oIB
-phj
-vEf
-pxj
+iWZ
+qlX
+nUF
oIB
fbx
cxo
@@ -124221,9 +124251,9 @@ rFY
ctC
gPF
oIB
-oIB
-oIB
-oIB
+lRa
+mMk
+pxj
oIB
fbx
gHg
@@ -124912,7 +124942,7 @@ sou
bAX
bdl
wIr
-aQy
+tgd
jAB
iYt
bMa
@@ -125935,7 +125965,7 @@ qlz
xYf
skn
bQX
-ijQ
+mbI
cLl
qlz
tez
@@ -128661,7 +128691,7 @@ bNM
iEr
owg
eNi
-tii
+wxJ
eJX
sAC
wYY
@@ -138463,7 +138493,7 @@ lmz
daz
cwS
ffE
-vHa
+tZa
wpw
ffE
ffE
@@ -139690,7 +139720,7 @@ wyv
pTt
gAe
rCi
-gba
+niZ
mUz
our
rna
diff --git a/maps/map_files/derelict_almayer/derelict_almayer.dmm b/maps/map_files/derelict_almayer/derelict_almayer.dmm
new file mode 100644
index 0000000000..5c7f6d181e
--- /dev/null
+++ b/maps/map_files/derelict_almayer/derelict_almayer.dmm
@@ -0,0 +1,141604 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/turf/open/space,
+/area/space)
+"aab" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "tele_ground1";
+ teleport_x = 180;
+ teleport_x_offset = 200;
+ teleport_y = 50;
+ teleport_y_offset = 80;
+ teleport_z = 1;
+ teleport_z_offset = 1
+ },
+/turf/open/space,
+/area/space)
+"aac" = (
+/turf/open/floor/almayer_hull{
+ dir = 9;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"aad" = (
+/turf/open/floor/almayer_hull{
+ dir = 1;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"aae" = (
+/turf/open/floor/almayer_hull{
+ dir = 5;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"aaf" = (
+/turf/open/floor/almayer_hull{
+ dir = 8;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"aag" = (
+/turf/open/floor/almayer_hull,
+/area/space)
+"aah" = (
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"aai" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull)
+"aaj" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"aak" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "tele_ground1";
+ teleport_x = 180;
+ teleport_x_offset = 200;
+ teleport_y = 50;
+ teleport_y_offset = 80;
+ teleport_z = 1;
+ teleport_z_offset = 1
+ },
+/turf/open/space/basic,
+/area/space)
+"aal" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"aam" = (
+/obj/structure/stairs,
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"aan" = (
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aao" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aap" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"aaq" = (
+/obj/item/bedsheet/purple{
+ layer = 3.2
+ },
+/obj/item/bedsheet/purple{
+ pixel_y = 13
+ },
+/obj/item/clothing/head/helmet/marine/tech{
+ layer = 4.1;
+ pixel_y = 12
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/mob/living/simple_animal/mouse/brown{
+ name = "rat"
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"aar" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_m_s)
+"aas" = (
+/obj/vehicle/powerloader,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/repair_bay)
+"aau" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/living/pilotbunks)
+"aav" = (
+/obj/vehicle/powerloader,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/repair_bay)
+"aaw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aax" = (
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"aay" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"aaz" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"aaC" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"aaD" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"aaE" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aaF" = (
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"aaG" = (
+/obj/effect/projector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"aaH" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/stair_clone/upper)
+"aaI" = (
+/obj/effect/projector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"aaJ" = (
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"aaK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/machinery/recharge_station{
+ layer = 2.9
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"aaL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aaO" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aaW" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"aaY" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aba" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock SU-3";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"abd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/closet/secure_closet/engineering_welding{
+ req_one_access_txt = "7;23;27"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"abe" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"abf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"abg" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"abh" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/lifeboat_pumps/north2)
+"abi" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/lifeboat_pumps/north2)
+"abk" = (
+/obj/structure/window/reinforced/toughened,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"abl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"abp" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_m_s)
+"abs" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/lifeboat_pumps/north1)
+"abt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"abu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"abw" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/lifeboat_pumps/north1)
+"abx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"abA" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"abB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"abC" = (
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"abE" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/basketball)
+"abF" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"abG" = (
+/obj/structure/filingcabinet/security,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"abH" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"abK" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 16
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"abM" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"abQ" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"abR" = (
+/obj/item/tank/phoron,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"abS" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"abT" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"abU" = (
+/obj/structure/machinery/computer/aa_console,
+/obj/structure/bed/chair/ob_chair,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/shipboard/weapon_room)
+"acc" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ access_modified = 1;
+ dir = 2;
+ name = "\improper Security Checkpoint";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"acf" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/living/starboard_garden)
+"acg" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"ach" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aci" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"acj" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = -12
+ },
+/obj/structure/barricade/handrail/wire{
+ dir = 8
+ },
+/obj/structure/holohoop{
+ dir = 4;
+ id = "basketball";
+ side = "left"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"ack" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"acl" = (
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"acm" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/item/toy/beach_ball/holoball,
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"acn" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/structure/holohoop{
+ dir = 8;
+ id = "basketball";
+ side = "right"
+ },
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 16
+ },
+/obj/structure/barricade/handrail/wire{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"aco" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/chapel)
+"acp" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"acq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"acr" = (
+/obj/structure/orbital_cannon{
+ density = 0
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/weapon_room)
+"acs" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/warhead,
+/obj/structure/machinery/light/built,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"act" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"acu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/vending/cola,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"acv" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/living/starboard_garden)
+"acx" = (
+/turf/closed/wall/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"acz" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"acA" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"acC" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"acD" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"acE" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"acF" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"acG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"acH" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"acI" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = -12
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"acJ" = (
+/mob/living/silicon/decoy/ship_ai{
+ layer = 2.98;
+ pixel_y = -16
+ },
+/obj/structure/blocker/invisible_wall,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"acK" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"acL" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"acM" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"acN" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"acO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"acP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"acT" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"acU" = (
+/obj/structure/closet/basketball,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/basketball)
+"acV" = (
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"acW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"acX" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"acY" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"acZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/cell_charger,
+/obj/item/cell/apc{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"adb" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"adc" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"add" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"adf" = (
+/obj/structure/closet,
+/obj/item/clothing/suit/armor/riot/marine/vintage_riot,
+/obj/item/clothing/head/helmet/riot/vintage_riot,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"adg" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"adi" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"adj" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/stair_clone/upper)
+"adk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ado" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/starboard_garden)
+"adp" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"adq" = (
+/turf/closed/wall/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"adr" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"adt" = (
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"adu" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"adv" = (
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"ady" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"adC" = (
+/obj/structure/surface/rack,
+/obj/item/stock_parts/manipulator/nano{
+ pixel_y = -9
+ },
+/obj/item/stock_parts/scanning_module/adv{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"adD" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/basketball)
+"adE" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"adF" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"adG" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/starboard_missiles)
+"adH" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"adI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"adO" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/starboard_atmos)
+"adP" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"adQ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"adR" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ access_modified = 1;
+ name = "\improper Pilot's Office";
+ req_one_access_txt = "3;22;19"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices/flight)
+"adT" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"adZ" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aea" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"aeb" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "northcheckpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aec" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aed" = (
+/obj/structure/machinery/scoreboard_button{
+ id = "basketball";
+ name = "Scoreboard Reset Button";
+ pixel_x = -20
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"aee" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aef" = (
+/turf/open/floor/almayer,
+/area/almayer/living/basketball)
+"aeh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"aei" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aej" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/officer_study)
+"ael" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/cafeteria_officer)
+"aem" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aeo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet{
+ name = "secure evidence locker";
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"aep" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/airmix)
+"aeq" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aer" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices/flight)
+"aet" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/starboard_garden)
+"aew" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/closet/secure_closet/bar{
+ name = "Success Cabinet";
+ req_access_txt = "1"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"aex" = (
+/obj/item/reagent_container/food/drinks/cans/beer{
+ pixel_x = 6;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"aey" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aez" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"aeA" = (
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"aeB" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"aeC" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"aeD" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aeE" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/shipboard/starboard_missiles)
+"aeG" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_x = -30
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"aeH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/basketball)
+"aeI" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"aeJ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices/flight)
+"aeK" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"aeL" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"aeM" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"aeN" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices/flight)
+"aeO" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/obj/item/paper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/officer_study)
+"aeP" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/officer_study)
+"aeQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/obj/structure/machinery/computer/emails,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/officer_study)
+"aeR" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/machinery/computer/emails,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/officer_study)
+"aeT" = (
+/obj/structure/stairs{
+ dir = 1
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"aeU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aeW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"aeX" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"aeY" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aeZ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"afa" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"afc" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"afd" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 32
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"afe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"aff" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"afj" = (
+/obj/structure/machinery/portable_atmospherics/canister/empty,
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"afk" = (
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"afl" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"afm" = (
+/turf/open/floor/almayer_hull{
+ dir = 6;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"afo" = (
+/obj/structure/safe,
+/obj/item/moneybag,
+/obj/item/clothing/glasses/monocle,
+/obj/item/weapon/telebaton,
+/obj/item/book/codebook,
+/obj/item/coin/silver{
+ desc = "A small coin, bearing the falling falcons insignia.";
+ name = "falling falcons challenge coin"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"afq" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"afr" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"afs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/basketball)
+"afu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"afv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"afx" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Workshop Vendors"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/repair_bay)
+"afy" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"afz" = (
+/turf/open/floor/almayer/empty,
+/area/almayer/hallways/vehiclehangar)
+"afB" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"afC" = (
+/obj/docking_port/stationary/vehicle_elevator/almayer,
+/turf/open/floor/almayer/empty,
+/area/almayer/hallways/vehiclehangar)
+"afD" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"afE" = (
+/obj/structure/machinery/vending/dinnerware,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/cafeteria_officer)
+"afF" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices/flight)
+"afG" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/officer_study)
+"afH" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/cafeteria_officer)
+"afI" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/cafeteria_officer)
+"afJ" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cafeteria_officer)
+"afK" = (
+/obj/structure/bed/chair,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/cafeteria_officer)
+"afL" = (
+/obj/structure/bed/chair,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cafeteria_officer)
+"afM" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/starboard_atmos)
+"afN" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/engineering/starboard_atmos)
+"afO" = (
+/obj/structure/machinery/portable_atmospherics/powered/pump,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/starboard_atmos)
+"afP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/engineering/starboard_atmos)
+"afQ" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/engineering/starboard_atmos)
+"afT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Particle Cannon Systems Room";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"afX" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"afZ" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"aga" = (
+/obj/item/tool/wirecutters{
+ pixel_y = -7
+ },
+/obj/structure/sign/poster{
+ desc = "You are becoming hysterical.";
+ icon_state = "poster11";
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"agb" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/reagent_container/food/snacks/bloodsoup{
+ pixel_y = 6
+ },
+/obj/item/tool/kitchen/utensil/spoon{
+ pixel_x = -8;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"agc" = (
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"age" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/hull/upper_hull/u_f_s)
+"agf" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/offices/flight)
+"agi" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "3;22;19"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"agj" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/commandbunks)
+"agl" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"agn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"ago" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"agq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/basketball)
+"agr" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/item/storage/fancy/candle_box,
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"ags" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/officer_study)
+"agu" = (
+/turf/open/floor/almayer,
+/area/almayer/living/officer_study)
+"agv" = (
+/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/almayer/squads/req)
+"agw" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"agy" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"agA" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/basketball)
+"agB" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"agG" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"agH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/storage/fancy/cigar/tarbacks,
+/obj/item/reagent_container/food/snacks/mre_pack/xmas3{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"agI" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/living/officer_study)
+"agJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"agK" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/living/officer_study)
+"agM" = (
+/obj/structure/pipes/unary/outlet_injector{
+ dir = 8;
+ name = "Waste Air Injector"
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"agN" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/disposalpipe/down/almayer{
+ dir = 1;
+ id = "almayerlink"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"agO" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/officer_study)
+"agQ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cafeteria_officer)
+"agS" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"agT" = (
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/cafeteria_officer)
+"agU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"agV" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cafeteria_officer)
+"agX" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"agY" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cafeteria_officer)
+"aha" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ access_modified = 1;
+ name = "\improper Commanding Officer's Quarters";
+ req_access = null;
+ req_access_txt = "31"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/commandbunks)
+"ahb" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ahc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/wy_mre,
+/obj/item/storage/box/wy_mre,
+/turf/open/floor/almayer,
+/area/almayer/living/cafeteria_officer)
+"ahd" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "3;22;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"ahe" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/item/storage/box/donkpockets,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cafeteria_officer)
+"ahf" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/starboard_atmos)
+"ahg" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"ahh" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/starboard_atmos)
+"ahi" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Evacuation Airlock SU-2";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"ahj" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"ahk" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"ahl" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/living/starboard_garden)
+"ahn" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/item/clothing/under/marine,
+/obj/item/clothing/suit/storage/marine,
+/obj/item/clothing/head/helmet/marine,
+/obj/item/clothing/head/cmcap,
+/obj/item/clothing/head/cmcap,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"aho" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/offices/flight)
+"ahq" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"ahr" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"aht" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"ahv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"ahw" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"ahx" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_s)
+"ahy" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/closed/wall/almayer,
+/area/almayer/living/starboard_garden)
+"ahz" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ahB" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"ahE" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_f_s)
+"ahG" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Atmospherics Wing"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/starboard_atmos)
+"ahH" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"ahJ" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/starboard_atmos)
+"ahM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"ahN" = (
+/obj/structure/flora/bush/ausbushes/var3/ywflowers,
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"ahR" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"ahS" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/offices/flight)
+"ahU" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Tool Closet"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"ahV" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/offices/flight)
+"ahY" = (
+/obj/structure/machinery/light,
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/clothing/shoes/laceup{
+ desc = "The height of fashion, and they're pre-polished! The name 'Bob' is written on the inside.";
+ pixel_y = -5
+ },
+/obj/item/device/flashlight/lamp/green,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"ahZ" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLock";
+ name = "ARES Exterior Lockdown Override";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Emergency";
+ name = "ARES Emergency Lockdown Override";
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/obj/structure/machinery/door_control{
+ id = "Brig Lockdown Shutters";
+ name = "Brig Lockdown Override";
+ pixel_x = -8;
+ pixel_y = -24;
+ req_access_txt = "1;3"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"aia" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/officer_study)
+"aib" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "7;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/vehiclehangar)
+"aic" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aid" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
+ dir = 2;
+ name = "\improper Officer's Study"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/officer_study)
+"aie" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"aig" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/flashlight/lamp,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"aih" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
+ dir = 2;
+ name = "\improper Officer's Cafeteria"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cafeteria_officer)
+"aii" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"aij" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cafeteria_officer)
+"aik" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"ail" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"aim" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"ain" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cafeteria_officer)
+"aio" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"aip" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"aiq" = (
+/turf/open/floor/almayer,
+/area/almayer/living/cafeteria_officer)
+"air" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/cafeteria_officer)
+"ais" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/offices/flight)
+"ait" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"aiv" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aiw" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/starboard_atmos)
+"aiy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aiz" = (
+/obj/structure/closet,
+/obj/item/clothing/under/marine,
+/obj/item/clothing/suit/storage/marine,
+/obj/item/clothing/head/helmet/marine,
+/obj/item/clothing/head/beret/cm,
+/obj/item/clothing/head/beret/cm,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"aiA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/clothing/glasses/mgoggles,
+/obj/item/clothing/glasses/mgoggles,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"aiB" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aiC" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"aiE" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aiF" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"aiG" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"aiH" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"aiJ" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"aiP" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"aiQ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/faxmachine,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"aiR" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"aiS" = (
+/obj/structure/closet,
+/obj/item/device/flashlight/pen,
+/obj/item/attachable/reddot,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aiT" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aiU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/card/id/visa,
+/obj/item/tool/crew_monitor,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aiV" = (
+/obj/structure/bookcase/manuals/engineering,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"aiW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"aiX" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/pilotbunks)
+"aiZ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"ajd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 2.5
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"aje" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"ajf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"ajj" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"ajk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"ajl" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/upper_medical)
+"ajm" = (
+/obj/structure/closet/secure_closet/securecom,
+/obj/item/storage/box/kit/honorguard,
+/obj/item/storage/box/kit/honorguard,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"ajp" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/dropship_equipment/fuel/cooling_system{
+ layer = 3.5
+ },
+/obj/item/clothing/glasses/welding{
+ layer = 3.6;
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ajq" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"ajr" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"ajs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ajt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"aju" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"ajv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"ajx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ajy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ajz" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ajA" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"ajB" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "7;23;27;102"
+ },
+/obj/item/reagent_container/food/drinks/coffee{
+ pixel_x = -3;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ajC" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"ajD" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"ajE" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"ajF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"ajG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"ajH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"ajI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"ajJ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/cafeteria_officer)
+"ajL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/light,
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "7;23;27;102"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"ajM" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/offices/flight)
+"ajN" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"ajO" = (
+/obj/structure/stairs,
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"ajP" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"ajQ" = (
+/obj/docking_port/stationary/escape_pod/east,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_s)
+"ajR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"ajS" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"ajT" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"ajV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"ajW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"ajX" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"ajY" = (
+/turf/open/floor/almayer_hull{
+ dir = 10;
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"ajZ" = (
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"aka" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"akb" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"akc" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"akd" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_a_s)
+"ake" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"akf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/weapon_room)
+"akk" = (
+/obj/structure/machinery/door/window/westright{
+ dir = 4
+ },
+/obj/structure/machinery/shower{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/commandbunks)
+"akl" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/commandbunks)
+"akm" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Bathroom"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/commandbunks)
+"akn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"ako" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"akp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"akr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"aks" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/device/binoculars,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"akt" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"aku" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/fancy/cigar/tarbacktube,
+/obj/item/clothing/head/headset{
+ pixel_y = -7
+ },
+/obj/item/tool/crowbar,
+/obj/item/clothing/head/helmet/marine/pilottex{
+ pixel_x = -7;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"akv" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clothing/head/headset{
+ pixel_y = -7
+ },
+/obj/item/tool/crowbar,
+/obj/item/clothing/head/helmet/marine/pilot{
+ pixel_x = -7;
+ pixel_y = 13
+ },
+/obj/item/device/camera{
+ pixel_x = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"akw" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"akx" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"aky" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
+ req_one_access = null;
+ req_one_access_txt = "7;23;27;102"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"akz" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"akA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"akC" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/starboard_missiles)
+"akE" = (
+/obj/structure/machinery/door_control{
+ id = "or2privacyshutter";
+ name = "Privacy Shutters";
+ pixel_y = 25
+ },
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"akH" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"akI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"akJ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"akK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"akL" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "bot_uniforms";
+ name = "Uniform Vendor Lockdown";
+ pixel_x = 8;
+ pixel_y = 24;
+ req_access_txt = "31"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"akO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"akQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"akS" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"akT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"akU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"akV" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"akW" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"akY" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/starboard_garden)
+"alb" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/commandbunks)
+"alc" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/commandbunks)
+"ald" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"ale" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/starboard_garden)
+"alf" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"alg" = (
+/obj/structure/flora/bush/ausbushes/ppflowers,
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"ali" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"alj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/obj/item/device/whistle,
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -17
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"alk" = (
+/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/almayer/medical/containment/cell)
+"all" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"alo" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_18"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"alp" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"alq" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"als" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"alu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/megaphone,
+/obj/item/device/radio,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"alw" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Pilot's Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"alx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "northcheckpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aly" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"alD" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"alE" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"alG" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"alH" = (
+/turf/closed/wall/almayer/white/outer_tile,
+/area/almayer/hull/upper_hull)
+"alI" = (
+/obj/item/stack/cable_coil{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/obj/item/trash/pistachios,
+/obj/item/tool/screwdriver,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/repair_bay)
+"alJ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"alK" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"alL" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/telecomms)
+"alO" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/upper_engineering)
+"alP" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"alQ" = (
+/obj/item/tool/wrench{
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/prop/mech/hydralic_clamp,
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"alR" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"alT" = (
+/obj/structure/bed/chair,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"alU" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/navigation)
+"alW" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"alX" = (
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"alZ" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/cic)
+"amb" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/machinery/shower{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/pilotbunks)
+"amd" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"amg" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"amh" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"amj" = (
+/obj/item/reagent_container/food/drinks/cans/souto,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/repair_bay)
+"amk" = (
+/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/almayer/medical/containment)
+"amo" = (
+/obj/structure/largecrate/random/secure,
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"amp" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"amw" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"amx" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"amz" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/starboard_missiles)
+"amA" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"amC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"amD" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"amE" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"amF" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"amH" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"amI" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"amJ" = (
+/obj/structure/largecrate/machine/bodyscanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"amK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"amL" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/obj/structure/largecrate,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"amN" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"amO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"amP" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"amQ" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"amR" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/item/storage/belt/utility,
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"amS" = (
+/obj/structure/stairs{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"amT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"amU" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"amW" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/toxin,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"amX" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"amY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"ana" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/disposal,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"anb" = (
+/obj/structure/machinery/conveyor{
+ id = "lower_garbage"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"anc" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"and" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/machinery/shower{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/pilotbunks)
+"anf" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"anh" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"ani" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"anm" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"ano" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"anp" = (
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"anq" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"anr" = (
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/sign/safety/intercom{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"ans" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"ant" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"anu" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "AftStarboardMaint"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/upper_hull/u_a_s)
+"anw" = (
+/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/almayer/medical/containment/cell)
+"anz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/machinery/photocopier,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"anB" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"anC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"anD" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"anG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"anH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"anI" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"anJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"anK" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"anL" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"anM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/tool/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"anO" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"anP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"anR" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"anS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"anT" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/repair_bay)
+"anU" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Dropship Control Bubble";
+ req_access = null;
+ req_one_access_txt = "3;22;2;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices/flight)
+"anV" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"anW" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"anX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aoa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"aoc" = (
+/obj/structure/stairs{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"aod" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"aoe" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/morgue)
+"aof" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aog" = (
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"aoh" = (
+/obj/structure/morgue/crematorium,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"aoi" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"aol" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"aom" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aop" = (
+/obj/structure/closet/secure_closet/personal/patient{
+ name = "morgue closet"
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"aoq" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"aor" = (
+/obj/structure/curtain/medical,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"aos" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"aot" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"aou" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"aov" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aow" = (
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"aox" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aoy" = (
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"aoA" = (
+/obj/structure/machinery/light,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aoB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoC" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"aoD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"aoG" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoH" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"aoI" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aoJ" = (
+/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/almayer/medical/containment/cell)
+"aoK" = (
+/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/almayer/medical/containment)
+"aoL" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"aoM" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"aoN" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"aoP" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/telecomms)
+"aoQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoT" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aoU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"aoV" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aoW" = (
+/obj/structure/machinery/portable_atmospherics/powered/pump,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aoX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 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/almayer/engineering/upper_engineering)
+"aoZ" = (
+/obj/structure/sign/prop1,
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/commandbunks)
+"apa" = (
+/obj/structure/surface/rack,
+/obj/item/tool/screwdriver,
+/obj/item/device/analyzer,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"apc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"apd" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"ape" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"apf" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"apg" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"api" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"apj" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"apk" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/stair_clone/upper)
+"apl" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"apm" = (
+/obj/structure/machinery/line_nexter{
+ dir = 1;
+ id = "MTline";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"apo" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/machinery/disposal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"app" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"apq" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"apr" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aps" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"apt" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"apu" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"apv" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"apz" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "northcheckpoint";
+ name = "North Checkpoint Shutters";
+ req_one_access_txt = "3;12;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"apA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"apB" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/food/snacks/wrapped/booniebars{
+ pixel_y = -4
+ },
+/obj/item/reagent_container/food/snacks/wrapped/booniebars,
+/obj/item/reagent_container/food/snacks/wrapped/booniebars{
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"apC" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"apE" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"apI" = (
+/obj/structure/machinery/door/airlock/almayer/command{
+ dir = 2;
+ name = "\improper Command Ladder"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull)
+"apJ" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"apK" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"apL" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cell_charger,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"apM" = (
+/obj/structure/machinery/autolathe/armylathe/full,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"apO" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"apP" = (
+/obj/structure/machinery/autolathe,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"apR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/pipes/vents/pump/no_boom{
+ name = "Secure Reinforced Air Vent";
+ welded = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"apS" = (
+/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/almayer/medical/containment)
+"apT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"apU" = (
+/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/almayer/medical/containment/cell)
+"apV" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"apW" = (
+/obj/structure/machinery/telecomms/server/presets/common,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"apX" = (
+/obj/structure/machinery/telecomms/server/presets/medical,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"apY" = (
+/obj/structure/machinery/telecomms/server/presets/engineering,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"apZ" = (
+/obj/structure/machinery/telecomms/receiver/preset_left,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/radio_rad{
+ pixel_x = 16;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"aqa" = (
+/obj/structure/machinery/telecomms/receiver/preset,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"aqb" = (
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"aqc" = (
+/obj/structure/machinery/door_control{
+ id = "panicroomback";
+ name = "\improper Safe Room";
+ pixel_x = -25;
+ req_one_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"aqd" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/machinery/disposal/delivery{
+ density = 0;
+ desc = "A pneumatic delivery unit. Sends items to the requisitions.";
+ icon_state = "delivery_engi";
+ name = "Requisitions Delivery Unit";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"aqe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aqf" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"aqg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/junction,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aqh" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aqj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering)
+"aqk" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/starboard_garden)
+"aqm" = (
+/obj/item/bedsheet/brown,
+/obj/structure/bed,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aqn" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"aqo" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 16
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"aqp" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"aqq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"aqs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"aqu" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/weapon_room)
+"aqw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"aqx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aqy" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"aqz" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"aqD" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "MTline";
+ name = "Next button";
+ pixel_x = 5;
+ pixel_y = 10;
+ req_one_access_txt = "2;7"
+ },
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aqF" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10"
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aqG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/medical_science)
+"aqI" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"aqJ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"aqK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"aqM" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aqN" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aqP" = (
+/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,
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment/cell)
+"aqS" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"aqT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler{
+ pixel_x = 7
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = -6
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aqU" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/command/airoom)
+"aqV" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"aqW" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/yellow,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aqY" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering)
+"arb" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"ard" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/yellow,
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"are" = (
+/obj/structure/machinery/computer/demo_sim{
+ dir = 4;
+ pixel_x = -17;
+ pixel_y = 8
+ },
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"arf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"arg" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"arh" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"ari" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/item/storage/pouch/tools,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"arj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/device/radio/headset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"ark" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"arl" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/command/telecomms)
+"arm" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"arn" = (
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"arp" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"arq" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"arr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"ars" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"arw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"arz" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"arA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"arC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"arE" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"arF" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"arG" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"arH" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"arJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"arK" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"arO" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"arP" = (
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"arR" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/prop/almayer/computers/sensor_computer1,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"arT" = (
+/obj/structure/target{
+ name = "punching bag"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"arV" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"arX" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"arZ" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"asc" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"ase" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/pilotbunks)
+"asf" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/pilotbunks)
+"asj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"ask" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"asl" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"asm" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"asn" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/plating,
+/area/almayer/medical/upper_medical)
+"aso" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"asp" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"ast" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"asu" = (
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"asv" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"asw" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"asx" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"asy" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"asA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"asB" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/bombcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"asD" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door_control{
+ id = "ARES StairsUpper";
+ name = "ARES Core Access";
+ pixel_x = -24;
+ pixel_y = 24;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"asE" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/engineering/engineering_workshop/hangar)
+"asF" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ access_modified = 1;
+ name = "\improper AI Reception";
+ req_access = null;
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"asG" = (
+/obj/structure/surface/table/reinforced/almayer_B{
+ climbable = 0;
+ indestructible = 1;
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"asH" = (
+/obj/structure/machinery/telecomms/bus/preset_three,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"asI" = (
+/obj/structure/machinery/telecomms/bus/preset_two,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"asJ" = (
+/obj/structure/machinery/telecomms/bus/preset_four,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"asK" = (
+/obj/structure/machinery/telecomms/bus/preset_one,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"asL" = (
+/obj/structure/machinery/telecomms/relay/preset/telecomms{
+ listening_level = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"asM" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/stair_clone/upper)
+"asN" = (
+/obj/structure/machinery/computer/crew,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"asO" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"asP" = (
+/obj/structure/machinery/door_control{
+ id = "laddernorthwest";
+ name = "North West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"asQ" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/item/folded_tent/cmd,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"asR" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/command/cic)
+"asS" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/starboard_garden)
+"asT" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"asU" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"asW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"asX" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"asY" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"asZ" = (
+/obj/structure/machinery/computer/cameras/almayer/ares{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"ata" = (
+/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/almayer/medical/medical_science)
+"atb" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "cicladder2"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/medical/medical_science)
+"atc" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"atd" = (
+/obj/structure/surface/rack,
+/obj/item/storage/box/sprays,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"ate" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/glass/bucket/janibucket,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"atf" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"atg" = (
+/obj/structure/bed/sofa/vert/grey/top,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"ath" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/door_control{
+ id = "OTStore";
+ name = "Shutters";
+ pixel_y = -24
+ },
+/obj/structure/surface/rack,
+/obj/item/reagent_container/glass/bucket/janibucket,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"ati" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"atj" = (
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"atk" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "tcomms_apc";
+ name = "\improper Telecommunications Power Storage"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/telecomms)
+"atl" = (
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"atm" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/telecomms)
+"atn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"ato" = (
+/obj/structure/closet/secure_closet/staff_officer/armory/shotgun,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"atp" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"atq" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"atr" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"ats" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"att" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stock_parts/matter_bin,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/item/cell/high,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"atu" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"atv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"atw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"atx" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"aty" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"atz" = (
+/obj/item/tool/minihoe{
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"atA" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Spare Bomb Suit";
+ req_one_access = null;
+ req_one_access_txt = "35"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"atC" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"atD" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"atE" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "OTStore";
+ name = "\improper Secure Storage";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"atF" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "OTStore";
+ name = "\improper Secure Storage";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"atG" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"atI" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"atJ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"atK" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"atL" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"atM" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"atN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/command/cic)
+"atO" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"atP" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"atT" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/pilotbunks)
+"atU" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"atV" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"atW" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"atY" = (
+/obj/structure/closet/emcloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"atZ" = (
+/obj/structure/machinery/door_control{
+ id = "OTStore";
+ name = "Shutters";
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"aua" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"aub" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"auc" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "ARES StairsLock";
+ name = "ARES Exterior Lockdown"
+ },
+/obj/effect/step_trigger/ares_alert/access_control,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"aud" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"aue" = (
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"auf" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/closed/wall/almayer/white/hull,
+/area/almayer/command/airoom)
+"aug" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"auh" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aui" = (
+/obj/structure/machinery/telecomms/hub/preset,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"auj" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"auk" = (
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"aul" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"aum" = (
+/obj/structure/disposalpipe/segment,
+/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/almayer/living/briefing)
+"aun" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"auo" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/obj/item/device/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aup" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/closet/secure_closet/freezer/industry,
+/obj/item/reagent_container/glass/beaker/silver,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aur" = (
+/obj/structure/reagent_dispensers/oxygentank{
+ anchored = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aus" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"aut" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"auu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"auv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"auw" = (
+/obj/structure/reagent_dispensers/pacidtank{
+ anchored = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"aux" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"auy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"auA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"auB" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"auC" = (
+/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{
+ anchored = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"auD" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"auE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"auF" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"auG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"auH" = (
+/obj/structure/machinery/door_control{
+ id = "tcomms_apc";
+ name = "Telecommuncation Power";
+ pixel_x = -25
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ access_modified = 1;
+ dir = 2;
+ name = "Telecommunications";
+ req_access_txt = "6"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/telecomms)
+"auI" = (
+/obj/structure/reagent_dispensers/acidtank,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"auK" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"auL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"auM" = (
+/obj/structure/reagent_dispensers/ammoniatank{
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"auN" = (
+/obj/structure/reagent_dispensers/fueltank{
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"auO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"auP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"auQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/command/cic)
+"auR" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/rifle/m41aMK1/ap,
+/obj/item/ammo_magazine/rifle/m41aMK1/ap,
+/obj/item/weapon/gun/rifle/m41aMK1/ap,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"auS" = (
+/obj/item/tool/warning_cone,
+/obj/item/tool/warning_cone,
+/obj/item/tool/warning_cone,
+/obj/structure/surface/table/almayer,
+/obj/item/device/lightreplacer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"auT" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/command/cic)
+"auU" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"auV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"auW" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/port_point_defense)
+"auX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/port_point_defense)
+"auY" = (
+/obj/structure/reagent_dispensers/watertank{
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"auZ" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"ava" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"avb" = (
+/obj/structure/reagent_dispensers/fueltank/gas/methane{
+ anchored = 1
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"avc" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"avd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"ave" = (
+/obj/item/reagent_container/glass/bucket/janibucket,
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_y = 11
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"avi" = (
+/obj/structure/reagent_dispensers/fueltank/custom,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"avj" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"avk" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 1;
+ req_one_access = null;
+ req_one_access_txt = "35"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"avl" = (
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"avm" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"avn" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"avo" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/powered/agent)
+"avr" = (
+/obj/structure/bed/sofa/south/grey/left{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"avs" = (
+/turf/closed/wall/biodome,
+/area/almayer/powered/agent)
+"avu" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"avv" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"avw" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/weapon_room)
+"avx" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"avz" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/vending/security,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"avB" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/navigation)
+"avC" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered/agent)
+"avD" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"avF" = (
+/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/almayer/medical/containment)
+"avG" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"avH" = (
+/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/almayer/medical/containment)
+"avJ" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock SU-5";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"avK" = (
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"avM" = (
+/obj/structure/machinery/computer/cameras/almayer/ares{
+ dir = 8;
+ pixel_x = 17;
+ pixel_y = 6
+ },
+/obj/structure/surface/table/reinforced/almayer_B{
+ climbable = 0;
+ indestructible = 1;
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/item/paper_bin/uscm{
+ pixel_y = 6
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"avN" = (
+/obj/structure/machinery/telecomms/processor/preset_two,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"avO" = (
+/obj/structure/machinery/telecomms/processor/preset_three,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"avP" = (
+/obj/structure/machinery/telecomms/processor/preset_four,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"avQ" = (
+/obj/structure/machinery/telecomms/processor/preset_one,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"avR" = (
+/obj/structure/machinery/telecomms/relay/preset/telecomms{
+ listening_level = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"avS" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8;
+ layer = 3.25
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/command/cic)
+"avT" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"avV" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"avW" = (
+/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/almayer/medical/lower_medical_medbay)
+"avX" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"avY" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"avZ" = (
+/obj/structure/flora/bush/ausbushes/var3/fullgrass,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"awa" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/powered/agent)
+"awb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"awd" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/pilotbunks)
+"awe" = (
+/turf/open/floor/plating/almayer,
+/area/almayer/living/starboard_garden)
+"awi" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"awj" = (
+/obj/structure/machinery/photocopier,
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"awk" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"awm" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/command/cic)
+"awn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"awp" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "Research Armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"awq" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"awt" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cic)
+"awu" = (
+/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/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"awv" = (
+/obj/structure/machinery/computer/telecomms/monitor,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aww" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"awx" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/command/telecomms)
+"awy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"awz" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/command/cichallway)
+"awA" = (
+/obj/structure/prop/almayer/computers/sensor_computer3{
+ name = "weapon targetting computer"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"awB" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Engineering Storage";
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"awC" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/port_missiles)
+"awD" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/CICmap,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"awE" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/corporateliason)
+"awF" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/numbertwobunks)
+"awG" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"awH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/faxmachine/uscm/command,
+/obj/item/device/megaphone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"awJ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"awM" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"awQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/cell/high{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/item/cell/high{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/item/cell/high{
+ pixel_x = -8;
+ pixel_y = -2
+ },
+/obj/item/cell/high{
+ pixel_x = -8;
+ pixel_y = -2
+ },
+/obj/item/device/multitool{
+ pixel_x = 8
+ },
+/obj/item/tool/screwdriver{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"awR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"awS" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "officers_mess";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/captain_mess)
+"awW" = (
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"awX" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/pilotbunks)
+"awY" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/pilotbunks)
+"awZ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/paper_bin/uscm{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/pilotbunks)
+"axa" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"axc" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/item/tool/warning_cone{
+ pixel_x = -20;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"axe" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"axk" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/weapon_room)
+"axl" = (
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "Research Armory";
+ name = "Research Armory";
+ pixel_x = -27;
+ req_one_access_txt = "4;28"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"axm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"axn" = (
+/obj/structure/sign/safety/rewire{
+ layer = 2.4;
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_container/glass/beaker{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/glass/beaker/large{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"axo" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/command/telecomms)
+"axp" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/command/cic)
+"axs" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"axu" = (
+/obj/structure/machinery/computer/telecomms/server,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"axw" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"axx" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axy" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axz" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin8"
+ },
+/area/almayer/hallways/hangar)
+"axA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/tool/pen/blue,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axB" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axD" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"axE" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"axI" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/surface/rack,
+/obj/item/storage/backpack/industrial,
+/obj/item/storage/backpack/industrial,
+/obj/item/tool/shovel/snow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/cell/high,
+/obj/item/clothing/glasses/welding,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axN" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axO" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axQ" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"axV" = (
+/obj/structure/machinery/telecomms/server/presets/command,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"axW" = (
+/obj/structure/machinery/telecomms/server/presets/security,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"axX" = (
+/obj/structure/machinery/telecomms/server/presets/squads,
+/obj/structure/sign/safety/commline_connection{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/rad_shield{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"aya" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"ayb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ayc" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform_decoration{
+ dir = 5;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ayd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"aye" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"ayh" = (
+/obj/structure/machinery/power/smes/buildable,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"ayi" = (
+/obj/structure/machinery/recharger,
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"ayl" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"ayn" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ayo" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Evacuation Airlock PU-2";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"ayq" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/CICmap,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"ayr" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/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/structure/machinery/computer/working_joe{
+ dir = 8;
+ pixel_x = 17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"ays" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cic)
+"ayt" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"ayu" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"ayv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/obj/item/tool/crowbar,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"ayw" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/navigation)
+"ayz" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8;
+ layer = 3.25
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/command/cic)
+"ayD" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/machinery/disposal,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ayE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddersouthwest";
+ name = "\improper South West Ladders Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"ayG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"ayH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"ayI" = (
+/obj/structure/surface/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -4
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"ayK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"ayL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"ayM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"ayP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"ayQ" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ayR" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ayT" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"ayU" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"ayV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"ayW" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"ayX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/obj/structure/sign/catclock{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/medical_science)
+"ayZ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"azb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/aft_hallway)
+"azc" = (
+/obj/structure/machinery/computer/telecomms/traffic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"azd" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/command/telecomms)
+"aze" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"azh" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"azi" = (
+/obj/effect/spawner/random/tool,
+/obj/structure/surface/rack,
+/obj/item/cell/high,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"azk" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 9;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"azl" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/offices/flight)
+"azn" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"azo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"azp" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"azq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"azr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"azs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/rods{
+ amount = 40
+ },
+/obj/item/device/lightreplacer,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"azt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"azw" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"azy" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"azA" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"azB" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddersouthwest";
+ name = "\improper South West Ladders Shutters"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"azC" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/flashlight/lamp/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"azD" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"azE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"azG" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddersouthwest";
+ name = "\improper South West Ladders Shutters"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"azH" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"azI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"azJ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "Hangar Lockdown";
+ name = "Hangar Lockdown";
+ req_one_access_txt = "3;19;22"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"azL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"azS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"azT" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"azU" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"azV" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/window/reinforced/toughened{
+ dir = 8
+ },
+/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
+ dir = 4;
+ name = "Dropship Remote Control Console";
+ shuttleId = "dropship_normandy";
+ disabled = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"azW" = (
+/obj/structure/machinery/door/window/westright{
+ dir = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"azX" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/window/reinforced/toughened{
+ dir = 4
+ },
+/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
+ dir = 8;
+ name = "Dropship Remote Control Console";
+ shuttleId = "dropship_alamo";
+ disabled = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"azY" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"azZ" = (
+/obj/structure/machinery/keycard_auth,
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aAa" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"aAb" = (
+/obj/structure/pipes/binary/pump/on{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"aAd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aAe" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aAf" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"aAj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cic)
+"aAl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ id_tag = "cic_exterior";
+ name = "\improper Combat Information Center"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"aAq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"aAr" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/surface/rack,
+/obj/item/storage/box/botanydisk,
+/obj/item/storage/box/botanydisk,
+/obj/item/storage/box/botanydisk,
+/obj/item/storage/box/botanydisk,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"aAv" = (
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"aAy" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/telecomms)
+"aAA" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 4
+ },
+/area/almayer/command/cic)
+"aAB" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door/window/westright,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aAC" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8;
+ layer = 3.25
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aAE" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aAF" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel"
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aAG" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ access_modified = 1;
+ dir = 2;
+ name = "Morgue";
+ req_access_txt = "25";
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/morgue)
+"aAK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"aAL" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_x = -1;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"aAP" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/structure/machinery/door_control{
+ id = "cic_exterior";
+ name = "CIC Door Control";
+ normaldoorcontrol = 1;
+ pixel_y = -14;
+ req_one_access_txt = "19"
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aAT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"aAW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"aAZ" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/structure/pipes/vents/pump/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aBa" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"aBb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aBc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aBd" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"aBe" = (
+/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/almayer/medical/containment/cell)
+"aBf" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ access_modified = 1;
+ name = "Telecommunications";
+ req_access_txt = "6"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/telecomms)
+"aBg" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aBh" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"aBi" = (
+/obj/item/folder/yellow,
+/obj/item/folder/yellow,
+/obj/item/tool/pen,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/surface/table/almayer,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aBk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"aBl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"aBm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aBn" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"aBo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"aBp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"aBq" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"aBr" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "engineeringladder"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/engineering/upper_engineering)
+"aBs" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aBt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/regular,
+/obj/item/device/radio/marine{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"aBu" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"aBw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/cups,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"aBx" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"aBz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/black_random,
+/obj/item/folder/black_random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"aBA" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"aBC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"aBD" = (
+/obj/structure/closet/basketball,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/basketball)
+"aBE" = (
+/obj/structure/bed/sofa/vert/grey,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"aBG" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 8;
+ icon_state = "logo_c"
+ },
+/area/almayer/command/lifeboat)
+"aBH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"aBI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aBP" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 1;
+ req_one_access = list(36)
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/synthcloset)
+"aBR" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/ashtray/glass,
+/obj/item/storage/fancy/cigarettes/kpack,
+/obj/item/device/whistle,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"aBS" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aBW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"aBX" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aBZ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/window/reinforced/toughened{
+ dir = 8
+ },
+/obj/structure/window/reinforced/toughened,
+/obj/structure/machinery/computer/cameras/almayer_network/vehicle{
+ dir = 4;
+ layer = 2.99;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aCa" = (
+/obj/structure/machinery/door/window/westright{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aCb" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/window/reinforced/toughened{
+ dir = 4
+ },
+/obj/structure/window/reinforced/toughened,
+/obj/structure/machinery/computer/crew/alt{
+ dir = 8;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aCd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"aCf" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/plating,
+/area/almayer/command/cic)
+"aCj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aCk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cic)
+"aCl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"aCo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/morgue)
+"aCp" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"aCt" = (
+/obj/structure/bed/sofa/south/white/right,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/medical_science)
+"aCv" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "cl_shutters 2";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/command/corporateliason)
+"aCw" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/medical/morgue)
+"aCC" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/medical_science)
+"aCD" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/machinery/computer/cameras/almayer{
+ dir = 4;
+ pixel_x = -16
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"aCR" = (
+/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/almayer/medical/containment)
+"aCX" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"aCZ" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"aDa" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aDb" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/command/telecomms)
+"aDe" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDg" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aDh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDi" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door/window/westright,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDj" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDk" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"aDm" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"aDr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aDx" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aDz" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aDB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDD" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"aDF" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aDH" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aDK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aDO" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"aDQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/command/lifeboat)
+"aDU" = (
+/obj/structure/surface/rack,
+/obj/item/tool/minihoe{
+ pixel_x = -4
+ },
+/obj/item/tool/minihoe{
+ pixel_x = 4
+ },
+/obj/item/tool/minihoe{
+ pixel_y = -4
+ },
+/obj/item/tool/wirecutters/clippers{
+ pixel_y = -4
+ },
+/obj/item/tool/wirecutters/clippers{
+ pixel_y = -2
+ },
+/obj/item/tool/wirecutters/clippers,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"aDX" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/containment{
+ dir = 4
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"aDZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"aEe" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"aEf" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"aEg" = (
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/lifeboat)
+"aEi" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/morgue)
+"aEj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/helmet/marine/pilot,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
+"aEk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data{
+ dir = 4;
+ pixel_y = 17
+ },
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 4
+ },
+/obj/structure/machinery/computer/card{
+ dir = 4;
+ pixel_y = -16
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"aEm" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/working_joe{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"aEp" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"aEA" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aEB" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aEC" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aED" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aEG" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aEI" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"aEJ" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"aEK" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"aEM" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/emails,
+/turf/open/floor/almayer,
+/area/almayer/living/numbertwobunks)
+"aEN" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4;
+ layer = 3.25
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/morgue)
+"aEO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"aEQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aES" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/bridgebunks)
+"aET" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/captain_mess)
+"aEV" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aEW" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/numbertwobunks)
+"aEX" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"aEZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/gloves{
+ pixel_x = -4;
+ pixel_y = 13
+ },
+/obj/item/storage/box/masks{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/tool/hand_labeler{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/reagent_container/glass/beaker/cryoxadone{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"aFa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"aFf" = (
+/obj/item/reagent_container/glass/beaker/bluespace,
+/obj/structure/machinery/chem_dispenser/research,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"aFg" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/briefcase,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/numbertwobunks)
+"aFh" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/black,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aFi" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/telecomms)
+"aFj" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aFl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/shard,
+/obj/item/tool/extinguisher,
+/obj/item/stock_parts/scanning_module,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFn" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFo" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aFp" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aFq" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/station_alert,
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aFr" = (
+/obj/structure/machinery/light,
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFt" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFu" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical,
+/obj/item/circuitboard/apc,
+/obj/item/tool/screwdriver,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/device/analyzer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFy" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/gloves/yellow,
+/obj/item/device/lightreplacer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFA" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFB" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFD" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFF" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aFI" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aFJ" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform_decoration{
+ dir = 5;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aFN" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 2;
+ req_one_access = list(2,34,30)
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"aFV" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"aFW" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"aGb" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "bridge1"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 23;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"aGc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"aGd" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"aGg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"aGj" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"aGn" = (
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"aGp" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = -17
+ },
+/obj/item/device/flashlight/lamp,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aGq" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/command/cic)
+"aGr" = (
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"aGt" = (
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"aGv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aGz" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/open/shower{
+ name = "cryo curtain"
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/port_atmos)
+"aGC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"aGD" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"aGH" = (
+/obj/structure/machinery/computer/ordercomp,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aGN" = (
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"aGO" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aGP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aGQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aGR" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aGS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"aGV" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aGW" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"aGX" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"aGY" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aGZ" = (
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/numbertwobunks)
+"aHa" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/morgue)
+"aHe" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/lifeboat)
+"aHk" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 21
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/numbertwobunks)
+"aHl" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"aHn" = (
+/obj/structure/machinery/shower{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/westleft,
+/obj/structure/window/reinforced/tinted/frosted,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/numbertwobunks)
+"aHo" = (
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aHq" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/computerlab)
+"aHr" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aHs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/telecomms)
+"aHt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aHu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Engineering Storage";
+ no_panel = 1;
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aHv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Engineering Storage";
+ no_panel = 1;
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aHw" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 1;
+ name = "\improper Engineering Lounge"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aHB" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aHK" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aHM" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"aHQ" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"aHR" = (
+/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/almayer/command/cic)
+"aHS" = (
+/obj/structure/pipes/unary/outlet_injector{
+ dir = 8;
+ name = "Mixed Air Injector"
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"aHU" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aHX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/numbertwobunks)
+"aHY" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"aHZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"aIa" = (
+/obj/structure/machinery/power/terminal,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"aIb" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aIe" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"aIf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aIl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aIo" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 8;
+ id = "researchlockdownext_windoor";
+ name = "\improper Research Windoor Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/medical_science)
+"aIq" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"aIr" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aIv" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aIw" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 9;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aIx" = (
+/obj/structure/flora/bush/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"aIB" = (
+/obj/structure/flora/bush/ausbushes/var3/fullgrass,
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"aID" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"aIP" = (
+/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/almayer/medical/containment)
+"aIQ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ access_modified = 1;
+ name = "\improper XO's Quarters";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/numbertwobunks)
+"aIS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"aIT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ access_modified = 1;
+ dir = 2;
+ name = "Telecommunications";
+ req_access_txt = "6"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/telecomms)
+"aIU" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aIV" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"aIX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/tankerbunks)
+"aIZ" = (
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_s)
+"aJa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/aft_hallway)
+"aJc" = (
+/obj/structure/machinery/door/airlock/almayer/command{
+ name = "\improper Commanding Officer's Mess"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/captain_mess)
+"aJd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aJf" = (
+/obj/structure/machinery/floodlight,
+/obj/structure/machinery/floodlight,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJh" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/cable_coil,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera_film,
+/obj/item/clothing/glasses/welding,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJk" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJl" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJn" = (
+/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/almayer/medical/containment)
+"aJp" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"aJq" = (
+/obj/structure/machinery/vending/snack,
+/obj/structure/sign/safety/galley{
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"aJs" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aJw" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aJz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"aJG" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8;
+ layer = 3.25
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/command/cic)
+"aJI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/command/cic)
+"aJJ" = (
+/obj/structure/flora/bush/ausbushes/var3/brflowers,
+/obj/structure/bed/chair,
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"aJL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/mre_pack/meal5,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"aJM" = (
+/obj/docking_port/stationary/escape_pod/east,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_p)
+"aJU" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"aKa" = (
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"aKf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aKg" = (
+/obj/structure/flora/bush/ausbushes/var3/brflowers,
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"aKi" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aKn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aKo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aKq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"aKs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Interior";
+ indestructible = 1;
+ name = "ARES Chamber Lockdown";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Railing";
+ indestructible = 1;
+ name = "ARES Chamber Railings";
+ needs_power = 0;
+ pixel_x = 24;
+ req_one_access_txt = "91;92"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ closed_layer = 4.1;
+ density = 0;
+ dir = 2;
+ id = "ARES Railing";
+ layer = 2.1;
+ open_layer = 2.1;
+ pixel_x = -1;
+ pixel_y = -1;
+ unacidable = 0;
+ unslashable = 0
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"aKu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"aKv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"aKy" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aKz" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aKB" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aKC" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aKE" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/living/numbertwobunks)
+"aKF" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"aKG" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/pilotbunks)
+"aKH" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/pilotbunks)
+"aKI" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/storage/toolbox/mechanical/green{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"aKJ" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"aKN" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clothing/accessory/red,
+/obj/item/clothing/head/bowlerhat{
+ pixel_x = 3;
+ pixel_y = 10
+ },
+/obj/item/clothing/suit/storage/webbing,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aKO" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clipboard{
+ pixel_x = 4
+ },
+/obj/item/storage/fancy/cigarettes/lady_finger{
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/numbertwobunks)
+"aKQ" = (
+/turf/closed/wall/almayer/outer,
+/area/space)
+"aKR" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/starboard_point_defense)
+"aKS" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"aKU" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"aKV" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"aKW" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_m_s)
+"aLa" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"aLd" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull)
+"aLf" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"aLk" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"aLl" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"aLp" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/numbertwobunks)
+"aLt" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/numbertwobunks)
+"aLB" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aLC" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_s)
+"aLE" = (
+/obj/docking_port/stationary/emergency_response/external/hangar_starboard{
+ dwidth = 8
+ },
+/turf/open/space,
+/area/space)
+"aLF" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"aLG" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aLJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"aLL" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/starboard_point_defense)
+"aLM" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"aLQ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"aLS" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"aLT" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/alpha)
+"aLW" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_point_defense)
+"aLX" = (
+/obj/effect/projector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"aLZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/obj/item/paper_bin/wy,
+/obj/structure/machinery/computer/cameras/containment{
+ dir = 4;
+ layer = 2.981;
+ name = "Research Cameras";
+ pixel_y = 16
+ },
+/obj/item/clothing/accessory/stethoscope,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"aMd" = (
+/obj/structure/filingcabinet/seeds{
+ density = 0;
+ pixel_x = 5;
+ pixel_y = 16
+ },
+/obj/structure/filingcabinet/disk{
+ density = 0;
+ pixel_x = -11;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"aMg" = (
+/obj/structure/sign/safety/intercom{
+ layer = 2.9;
+ pixel_x = -6;
+ pixel_y = 29
+ },
+/obj/structure/machinery/botany/extractor{
+ density = 0;
+ pixel_x = 15;
+ pixel_y = 16
+ },
+/obj/item/device/flashlight/pen{
+ pixel_x = 14;
+ pixel_y = 15
+ },
+/obj/structure/machinery/vending/hydroseeds{
+ density = 0;
+ pixel_x = -7;
+ pixel_y = 16;
+ req_access_txt = "28"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"aMh" = (
+/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/almayer/hull/upper_hull)
+"aMi" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "cicladder4"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/upper_hull)
+"aMl" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"aMm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/crowbar,
+/obj/structure/sign/safety/rad_shield{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aMo" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/telecomms)
+"aMq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/lighter/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aMr" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"aMs" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"aMt" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"aMw" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aMx" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "15;16;21";
+ vend_x_offset = 0;
+ vend_y_offset = 0
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"aMz" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha)
+"aMB" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"aMC" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"aMD" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/toy/deck,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"aME" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/airmix)
+"aMG" = (
+/obj/structure/machinery/microwave{
+ pixel_y = 7
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"aMH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"aMM" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aMO" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"aMP" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/squads/alpha)
+"aMQ" = (
+/obj/structure/machinery/cm_vending/clothing/tl/alpha{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"aMT" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"aMU" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"aMV" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aMY" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"aNc" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"aNe" = (
+/obj/structure/closet/firecloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"aNi" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/chapel)
+"aNj" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"aNl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"aNm" = (
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"aNn" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aNs" = (
+/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 = "plate"
+ },
+/area/almayer/living/offices)
+"aNw" = (
+/obj/structure/machinery/door_control{
+ id = "safe_armory";
+ name = "Hangar Armory Lockdown";
+ pixel_y = 24;
+ req_access_txt = "4"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"aNx" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"aNG" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aNI" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"aNO" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aNQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"aNT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"aNY" = (
+/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/almayer/medical/containment)
+"aOd" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"aOe" = (
+/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/almayer/medical/containment/cell)
+"aOg" = (
+/obj/structure/bed/sofa/south/grey{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"aOq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aOr" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aOs" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"aOt" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/command/telecomms)
+"aOy" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/squads/alpha)
+"aOz" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/squads/alpha)
+"aOB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOC" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOD" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aOE" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"aOF" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOH" = (
+/obj/structure/machinery/pipedispenser,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOK" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"aOL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"aOM" = (
+/obj/structure/machinery/power/port_gen/pacman,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"aON" = (
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"aOP" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"aOQ" = (
+/obj/structure/closet/crate,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOR" = (
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"aOS" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"aOU" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"aOV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/fancy/cigarettes/kpack,
+/obj/structure/window/reinforced,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOW" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/donkpockets,
+/obj/structure/window/reinforced,
+/obj/item/reagent_container/food/drinks/cans/souto/peach{
+ pixel_x = 12;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/peach{
+ pixel_x = 12
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"aOY" = (
+/obj/structure/bed/chair,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"aPa" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"aPb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"aPf" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"aPi" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"aPj" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"aPl" = (
+/obj/structure/machinery/cm_vending/clothing/marine/alpha{
+ density = 0;
+ layer = 4.1;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"aPm" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/aft_hallway)
+"aPn" = (
+/obj/structure/machinery/cm_vending/clothing/marine/bravo{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"aPo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"aPr" = (
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/living/cryo_cells)
+"aPw" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/command/lifeboat)
+"aPx" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat1-D2";
+ linked_dock = "almayer-lifeboat1";
+ throw_dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"aPy" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hallways/starboard_umbilical)
+"aPz" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"aPB" = (
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/command/cic)
+"aPD" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"aPE" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"aPH" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"aPI" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/command/cic)
+"aPJ" = (
+/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/almayer/medical/containment/cell)
+"aPK" = (
+/obj/structure/sign/nosmoking_1,
+/turf/closed/wall/almayer,
+/area/almayer/squads/alpha)
+"aPX" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"aPY" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"aPZ" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"aQb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"aQg" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8;
+ layer = 3.25
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "emerald"
+ },
+/area/almayer/command/cic)
+"aQo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"aQp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"aQq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"aQr" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"aQs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/obj/item/tool/extinguisher,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aQt" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aQv" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/starboard_umbilical)
+"aQz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"aQF" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/offices)
+"aQG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices)
+"aQH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices)
+"aQL" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/bravo)
+"aQM" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/book/manual/engineering_guide{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_x = -8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"aQN" = (
+/obj/structure/sign/nosmoking_1,
+/turf/closed/wall/almayer,
+/area/almayer/squads/bravo)
+"aQT" = (
+/obj/structure/machinery/cm_vending/clothing/marine/alpha{
+ density = 0;
+ layer = 4.1;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha)
+"aQW" = (
+/obj/structure/machinery/vending/cola{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"aQZ" = (
+/obj/structure/machinery/botany/editor{
+ density = 0;
+ pixel_x = 5;
+ pixel_y = 16
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 5;
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"aRd" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/door/window/westright,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/window/westright{
+ dir = 4;
+ req_access_txt = "28"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 8;
+ id = "researchlockdownext_windoor";
+ name = "\improper Research Windoor Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"aRi" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"aRj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"aRo" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"aRp" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"aRq" = (
+/obj/structure/closet/secure_closet/staff_officer/gear,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aRr" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/item/storage/firstaid/o2,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aRt" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/command/cic)
+"aRu" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"aRv" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aRx" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"aRy" = (
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"aRA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"aRB" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/kitchen/tray,
+/obj/item/reagent_container/food/snacks/toastedsandwich{
+ pixel_y = 5
+ },
+/obj/structure/sign/poster{
+ icon_state = "poster8";
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aRC" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aRD" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"aRE" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/box/drinkingglasses,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aRF" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ access_modified = 1;
+ dir = 2;
+ name = "Morgue Processing";
+ req_access_txt = "25";
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/morgue)
+"aRG" = (
+/obj/structure/bed/chair/comfy/beige,
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 12;
+ pixel_y = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aRJ" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "med1"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 23;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/refridgeration{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/medical/upper_medical)
+"aRK" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "med2"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/medical/upper_medical)
+"aRP" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"aRS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"aRT" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"aRU" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aRV" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"aRX" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aRZ" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"aSa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"aSb" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"aSh" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 1
+ },
+/obj/item/prop/helmetgarb/helmet_nvg/cosmetic,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"aSl" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/cm_vending/sorted/medical,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"aSm" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"aSn" = (
+/obj/item/stack/sheet/mineral/plastic{
+ amount = 15
+ },
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"aSo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/hydroponics)
+"aSq" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/chem_dispenser/soda,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"aSr" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/one{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aSt" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/chem_dispenser/soda/beer,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"aSv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"aSx" = (
+/obj/structure/machinery/vending/dinnerware,
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"aSy" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aSz" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"aSA" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aSB" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aSC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aSE" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"aSH" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"aSI" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"aSJ" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aSO" = (
+/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{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_two)
+"aSP" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"aSS" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"aSY" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket,
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/structure/janitorialcart,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"aTa" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"aTf" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aTg" = (
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/chief_mp_office)
+"aTj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aTk" = (
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"aTm" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"aTn" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"aTq" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"aTr" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"aTv" = (
+/obj/structure/machinery/cm_vending/clothing/marine/bravo{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"aTw" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"aTx" = (
+/obj/structure/machinery/power/apc,
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aTy" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"aTz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aTA" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/kitchen/tray,
+/obj/item/tool/kitchen/utensil/spoon{
+ pixel_x = -1
+ },
+/obj/item/tool/kitchen/utensil/fork{
+ pixel_x = -8
+ },
+/obj/item/tool/kitchen/utensil/knife{
+ pixel_x = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aTB" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"aTE" = (
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"aTG" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"aTL" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"aTQ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"aTR" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ layer = 2.2;
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{
+ dir = 1;
+ name = "\improper Command Power Substation"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"aTS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"aTT" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 4
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"aTV" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/cells)
+"aTW" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"aTY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"aTZ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"aUa" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aUd" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 1;
+ name = "\improper Officer's Bunks";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/port_atmos)
+"aUe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aUi" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"aUj" = (
+/obj/structure/machinery/cm_vending/clothing/tl/bravo{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"aUk" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aUl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aUm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aUo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"aUp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/donut_box,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aUq" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"aUw" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aUx" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/engineering/lower_engineering)
+"aUC" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/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/almayer/living/captain_mess)
+"aUH" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/port_atmos)
+"aUL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/trash/cigbutt,
+/obj/item/ashtray/glass,
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"aUM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"aUY" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aUZ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aVd" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aVf" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"aVg" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ dir = 1;
+ name = "\improper Officer's Quarters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/bridgebunks)
+"aVi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"aVk" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"aVl" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/lower_engineering)
+"aVo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/portable_atmospherics/canister/empty,
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"aVp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"aVr" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/sign/safety/fridge{
+ pixel_x = 32
+ },
+/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/almayer/living/captain_mess)
+"aVt" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"aVC" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"aVF" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/command/telecomms)
+"aVG" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aVH" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"aVI" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/chem_dispenser/soda{
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"aVL" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aVR" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "bridge3"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 23;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"aVU" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/disposal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aVV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aVW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aVX" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ dir = 1;
+ name = "\improper Officer's Quarters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/bridgebunks)
+"aVY" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aWb" = (
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/ce_room)
+"aWc" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"aWd" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"aWf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"aWk" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aWl" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"aWm" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aWn" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aWo" = (
+/obj/structure/pipes/unary/outlet_injector,
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"aWp" = (
+/obj/structure/pipes/vents/pump/siphon/on{
+ id_tag = "waste_lower_out"
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"aWq" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aWr" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/engineering/lower_engineering)
+"aWs" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aWt" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/sign/safety/coffee{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"aWu" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"aWw" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/gym)
+"aWz" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"aWA" = (
+/obj/structure/toilet{
+ pixel_y = 13
+ },
+/obj/item/paper_bin/uscm{
+ pixel_x = 9;
+ pixel_y = -3
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/item/prop/magazine/dirty{
+ pixel_x = -6;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"aWD" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/offices)
+"aWE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Conference and Office Area"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices)
+"aWF" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices)
+"aWH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"aWM" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aWR" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aWS" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_17";
+ pixel_x = -5;
+ pixel_y = 10
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"aWT" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"aWV" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"aWW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"aWZ" = (
+/obj/structure/pipes/standard/simple/visible,
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/airmix)
+"aXb" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"aXc" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_x = -9;
+ pixel_y = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"aXe" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"aXh" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aXj" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aXx" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/port_atmos)
+"aXA" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"aXE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"aXQ" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"aXS" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aXT" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"aYc" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"aYd" = (
+/obj/structure/dropship_equipment/medevac_system,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"aYj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"aYm" = (
+/obj/structure/sign/safety/med_life_support{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"aYn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"aYp" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "cl_shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/command/corporateliason)
+"aYq" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"aYr" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"aYs" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"aYt" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"aYu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aYz" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"aYC" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"aYD" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"aYE" = (
+/obj/structure/platform,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 6;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"aYI" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aYO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aYQ" = (
+/obj/structure/machinery/bioprinter{
+ stored_metal = 125
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_one)
+"aYR" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"aYT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aYV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aYW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aYX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aYY" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"aYZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aZe" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"aZf" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"aZg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aZi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aZl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"aZm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"aZn" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"aZr" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"aZs" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"aZy" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"aZz" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"aZB" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_umbilical)
+"aZC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"aZE" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"aZF" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"aZH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"aZJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"aZK" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"aZL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZM" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/adv/empty,
+/obj/item/storage/firstaid/adv/empty,
+/obj/item/storage/firstaid/adv/empty,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"aZO" = (
+/obj/structure/machinery/landinglight/ds2/delaytwo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZP" = (
+/obj/structure/machinery/landinglight/ds2/delayone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZQ" = (
+/obj/structure/machinery/landinglight/ds2,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZR" = (
+/obj/structure/machinery/landinglight/ds2/delaythree,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZV" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZW" = (
+/obj/structure/machinery/landinglight/ds1/delayone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZX" = (
+/obj/structure/machinery/landinglight/ds1,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZY" = (
+/obj/structure/machinery/landinglight/ds1/delaythree,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"aZZ" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"baa" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/obj/structure/machinery/faxmachine/corporate/liaison,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bac" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bad" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"baf" = (
+/obj/structure/barricade/handrail/medical,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bag" = (
+/obj/structure/machinery/optable,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_one)
+"bai" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bal" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"baq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bar" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bat" = (
+/obj/structure/machinery/door_control{
+ id = "ARES Mainframe Right";
+ name = "ARES Mainframe Lockdown";
+ pixel_x = -24;
+ pixel_y = -24;
+ req_one_access_txt = "200;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"baw" = (
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"bax" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"baB" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"baD" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"baG" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"baH" = (
+/obj/structure/machinery/landinglight/ds2/delaythree{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"baI" = (
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"baM" = (
+/obj/structure/machinery/landinglight/ds2/delaythree{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"baN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"baR" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"baS" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"baX" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"baY" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/bomb_supply,
+/obj/effect/spawner/random/bomb_supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"baZ" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/lower_medical_lobby)
+"bbd" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"bbe" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"bbf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bbg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bbh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bbi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bbj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bbk" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bbl" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bbm" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bbn" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bbp" = (
+/obj/effect/projector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"bbr" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"bbs" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/cryo_cells)
+"bbv" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bbx" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bby" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"bbz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"bbA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"bbB" = (
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"bbC" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bbL" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"bbO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bbR" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"bbS" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/starboard_point_defense)
+"bbV" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"bbX" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/constructable_frame,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"bbY" = (
+/obj/structure/machinery/cm_vending/clothing/smartgun/alpha,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bbZ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"bca" = (
+/obj/structure/machinery/cm_vending/gear/smartgun,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bcb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/prop/almayer/hangar_stencil{
+ icon_state = "dropship2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bcc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bcd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/landinglight/ds2{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bcm" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/hangar)
+"bco" = (
+/obj/structure/machinery/cm_vending/gear/medic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bcp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/prop/almayer/hangar_stencil,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bcw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/prop/almayer/hangar_stencil,
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bcx" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bcz" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bcA" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bcB" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bcC" = (
+/obj/item/reagent_container/glass/beaker/bluespace,
+/obj/structure/machinery/chem_dispenser/medbay,
+/obj/structure/sign/safety/ref_chem_storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bcD" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bcE" = (
+/obj/structure/machinery/cm_vending/gear/engi,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bcK" = (
+/obj/structure/machinery/smartfridge/chemistry,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/chemistry)
+"bcL" = (
+/obj/structure/machinery/door_control{
+ id = "or01";
+ name = "Surgery Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = 23
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"bcP" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_two)
+"bcR" = (
+/obj/structure/sink{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"bcS" = (
+/obj/structure/machinery/door_control{
+ id = "or1privacyshutter";
+ name = "Privacy Shutters";
+ pixel_y = 25
+ },
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"bcV" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_two)
+"bcZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/masks,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bda" = (
+/obj/structure/machinery/door_control{
+ id = "or02";
+ name = "Surgery Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = 23
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"bdd" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/briefing)
+"bdg" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/briefing)
+"bdi" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"bdj" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"bdk" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"bdl" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"bdm" = (
+/obj/structure/machinery/door_control{
+ id = "crate_room";
+ name = "storage shutters";
+ pixel_x = -25;
+ pixel_y = -1
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bdn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bdo" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bdr" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"bds" = (
+/obj/structure/machinery/cm_vending/clothing/specialist/alpha,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bdv" = (
+/obj/structure/machinery/cm_vending/clothing/leader/alpha,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bdw" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"bdy" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Exterior Airlock";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"bdz" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"bdA" = (
+/obj/structure/machinery/cm_vending/clothing/medic/alpha,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bdC" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bdD" = (
+/obj/structure/machinery/cm_vending/clothing/engi/alpha,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bdH" = (
+/turf/open/space/basic,
+/area/space)
+"bdI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bdJ" = (
+/obj/structure/machinery/cm_vending/gear/spec,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bdK" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bdL" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bdM" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bdO" = (
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bdU" = (
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bdV" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bdY" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"bea" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"beg" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bei" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bej" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"bek" = (
+/obj/structure/machinery/cm_vending/sorted/medical/marinemed,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"ben" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bep" = (
+/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,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"ber" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "north_central_checkpoint";
+ name = "North Checkpoint Shutters";
+ req_one_access_txt = "3;12;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bet" = (
+/obj/structure/bed/stool,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bev" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_one)
+"bew" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/masks,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bez" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_one)
+"beB" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"beE" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"beG" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"beH" = (
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"beI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"beP" = (
+/obj/item/stack/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"beQ" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/briefing)
+"beR" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"beS" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"beT" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"beU" = (
+/obj/structure/machinery/cm_vending/gear/leader,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"beV" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"beW" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"beZ" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"bfb" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/technology_scanner,
+/obj/effect/spawner/random/technology_scanner,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bfc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"bfl" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bfm" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bfn" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"bfo" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/cryo_cells)
+"bfs" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/lower_engineering)
+"bft" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"bfu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/squads/alpha)
+"bfw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bfx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bfy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"bfz" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bfA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/electrical,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bfC" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bfD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bfE" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/squads/alpha)
+"bfJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/handheld1,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bfK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/comp_closed,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bfL" = (
+/obj/structure/machinery/landinglight/ds2/delaytwo{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bfP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"bfV" = (
+/obj/structure/machinery/landinglight/ds2{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bfY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/comp_open,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bfZ" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bga" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bgc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"bgj" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bgk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/machinery/reagentgrinder{
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/mineral/phoron{
+ amount = 25;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bgl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"bgm" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"bgn" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_two)
+"bgr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_two)
+"bgs" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"bgt" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_two)
+"bgu" = (
+/obj/structure/machinery/chem_master,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/chemistry)
+"bgv" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ dir = 1;
+ id_tag = "or01";
+ name = "Operating Theatre 1"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/operating_room_one)
+"bgw" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "or2privacyshutter";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/operating_room_two)
+"bgy" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ dir = 1;
+ id_tag = "or02";
+ name = "Operating Theatre 2"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/operating_room_two)
+"bgz" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_one)
+"bgA" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_one)
+"bgC" = (
+/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/almayer/medical/operating_room_one)
+"bgG" = (
+/obj/structure/window/framed/almayer/white,
+/turf/open/floor/plating,
+/area/almayer/medical/chemistry)
+"bgH" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bgK" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/chapel)
+"bgO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"bgP" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bgR" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"bgU" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bgW" = (
+/obj/structure/machinery/cm_vending/clothing/marine/charlie{
+ density = 0;
+ layer = 4.1;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"bgY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bhf" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/telecomms/broadcaster/preset_left,
+/obj/structure/sign/safety/laser{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"bhg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bhh" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "n_umbilical";
+ name = "\improper Umbillical Airlock";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bhn" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bho" = (
+/obj/structure/machinery/computer/med_data,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"bhq" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"bhr" = (
+/obj/structure/shuttle/part/dropship2/lower_right_wall,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"bht" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"bhw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"bhx" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/chapel)
+"bhB" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/engineering/engine_core)
+"bhC" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bhD" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bhG" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bhJ" = (
+/obj/structure/machinery/cm_vending/clothing/staff_officer{
+ density = 0;
+ pixel_x = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/bridgebunks)
+"bhM" = (
+/obj/structure/safe,
+/obj/item/coin/platinum,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/clothing/accessory/storage/holster,
+/obj/item/weapon/gun/pistol/es4,
+/obj/item/ammo_magazine/pistol/es4,
+/obj/item/ammo_magazine/pistol/es4,
+/obj/item/clothing/suit/armor/bulletproof,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bhT" = (
+/obj/structure/cargo_container/lockmart/mid{
+ layer = 3.1;
+ pixel_y = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bhU" = (
+/obj/structure/cargo_container/lockmart/right{
+ layer = 3.1;
+ pixel_y = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"biq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/glass/beaker/large,
+/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,
+/obj/item/reagent_container/glass/beaker,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bit" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"biu" = (
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ access_modified = 1;
+ dir = 2;
+ name = "\improper Chemistry Laboratory";
+ req_access_txt = "20";
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/chemistry)
+"biy" = (
+/obj/structure/pipes/unary/freezer,
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/sign/safety/autodoc{
+ pixel_x = 20;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/cryo_tubes)
+"biA" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/operating_room_three)
+"biB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull)
+"biF" = (
+/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/almayer/medical/lower_medical_medbay)
+"biL" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"biT" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/living/starboard_garden)
+"biV" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/starboard_garden)
+"bja" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"bjb" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bjd" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/lower_engineering)
+"bje" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bjg" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"bjl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"bjn" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bjs" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bju" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"bjy" = (
+/obj/docking_port/stationary/emergency_response/port3,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"bjA" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bjD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"bjI" = (
+/obj/structure/machinery/portable_atmospherics/powered/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bjJ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"bjL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bjM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_umbilical)
+"bjN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bjO" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bjR" = (
+/obj/structure/cargo_container/arious/right,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bjS" = (
+/obj/structure/machinery/landinglight/ds2{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bkd" = (
+/obj/structure/machinery/landinglight/ds2/delaytwo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bkg" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"bkh" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bks" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bkt" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bky" = (
+/obj/structure/machinery/cryo_cell,
+/obj/structure/pipes/standard/cap/hidden,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/cryo_tubes)
+"bkz" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lockerroom)
+"bkA" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/chemistry)
+"bkD" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "vehicle_elevator_railing"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bkE" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "or1privacyshutter";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/operating_room_one)
+"bkN" = (
+/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,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"bkQ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"bkR" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bkT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"bkU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bkY" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bkZ" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/engineering_workshop)
+"blb" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"bld" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"blf" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"blj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/item/tool/screwdriver,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"bll" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"blm" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ name = "\improper Core Hatch"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bln" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 3;
+ pixel_y = 27
+ },
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"blo" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"blp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/tool/lighter/zippo,
+/obj/item/toy/dice/d20,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/toy/dice{
+ pixel_x = 10;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"blq" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ access_modified = 1;
+ dir = 2;
+ name = "Firing Range";
+ req_access = null;
+ req_one_access_txt = "2;4;7;9;21"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cryo_cells)
+"bls" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/living/basketball)
+"blw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/lighter,
+/obj/structure/machinery/faxmachine/uscm,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"blA" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"blB" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"blJ" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"blZ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/computer/med_data/laptop,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lockerroom)
+"bmb" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bmc" = (
+/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
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/operating_room_three)
+"bmd" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ dir = 1;
+ id_tag = "or04";
+ name = "Operating Theatre 4"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/operating_room_four)
+"bmh" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_x = 13;
+ pixel_y = 15
+ },
+/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_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bmi" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_three)
+"bmj" = (
+/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/almayer/medical/operating_room_three)
+"bmk" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_four)
+"bml" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm{
+ pixel_y = 6
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"bmn" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bmr" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"bmu" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bmv" = (
+/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
+ dir = 2;
+ no_panel = 1;
+ not_weldable = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"bmw" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bmx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_umbilical)
+"bmy" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bmz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/utensil/spoon{
+ pixel_x = 10
+ },
+/obj/item/reagent_container/food/snacks/hotchili,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"bmB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"bmC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bmD" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"bmF" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"bmM" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/sign/safety/coffee{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bmN" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"bmO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bmP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bmR" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bmT" = (
+/obj/structure/shuttle/part/dropship2/transparent/nose_top_left,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"bmW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"bmX" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"bnc" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 9";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bne" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bng" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_x = 17;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"bni" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bnj" = (
+/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,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/chemistry)
+"bno" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"bnp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"bnr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bnt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"bnu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bny" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"bnA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"bnB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"bnD" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"bnH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/tool/warning_cone,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bnI" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/obj/structure/bed/sofa/south/white/left,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bnR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_four)
+"bnS" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/megaphone,
+/obj/item/book/manual/medical_diagnostics_manual,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"bnT" = (
+/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/almayer/medical/operating_room_three)
+"bnX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bnZ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"bob" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"bof" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_four)
+"boh" = (
+/obj/structure/machinery/door_control{
+ id = "or04";
+ name = "Surgery Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = 23
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"bop" = (
+/obj/structure/machinery/cm_vending/clothing/military_police{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"boq" = (
+/obj/structure/bed/chair/comfy/alpha,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"bot" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bou" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/item/tank/emergency_oxygen/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"boy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/squads/req)
+"boz" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"boA" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/req)
+"boB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/squads/req)
+"boC" = (
+/obj/structure/barricade/handrail,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"boH" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"boI" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"boL" = (
+/turf/open/floor/almayer,
+/area/almayer/living/starboard_garden)
+"boN" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/engineering_particle_accelerator,
+/obj/item/folder/yellow,
+/obj/structure/machinery/keycard_auth{
+ pixel_x = -8;
+ pixel_y = 25
+ },
+/obj/structure/sign/safety/high_rad{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 14;
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"boU" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"boV" = (
+/obj/structure/cargo_container/wy/left,
+/obj/structure/prop/almayer/minigun_crate{
+ pixel_x = 1;
+ pixel_y = 39
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"boX" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"boY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"boZ" = (
+/obj/item/storage/box/donkpockets,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bpa" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"bpd" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Particle Cannon Systems Room";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/port_missiles)
+"bpe" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"bph" = (
+/obj/structure/bed/chair/comfy/orange,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"bpj" = (
+/obj/structure/dropship_equipment/fulton_system,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"bpo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/glasses/regular,
+/obj/item/clothing/glasses/regular,
+/obj/item/clothing/glasses/regular,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"bpv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "south_central_checkpoint";
+ name = "South Checkpoint Shutters";
+ req_one_access_txt = "3;12;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bpz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"bpC" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"bpG" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"bpH" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"bpJ" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"bpK" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"bpL" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bpQ" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"bpR" = (
+/turf/open/floor/almayer/empty,
+/area/supply/station)
+"bpS" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8;
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"bpT" = (
+/obj/structure/machinery/computer/supplycomp,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bpU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bpV" = (
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"bpW" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bpX" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/engineering_workshop)
+"bpY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bpZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/cell/crap,
+/obj/item/tool/crowbar,
+/obj/structure/machinery/cell_charger,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bqa" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bqe" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"bqf" = (
+/obj/structure/machinery/autolathe,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bqm" = (
+/obj/structure/closet/boxinggloves,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"bqo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bqp" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"bqw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bqy" = (
+/obj/structure/sign/poster/hero/voteno{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bqF" = (
+/obj/structure/dropship_equipment/fuel/fuel_enhancer,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"bqG" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"bqH" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ dir = 2;
+ name = "\improper Medical Bay";
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "medicalemergency";
+ name = "\improper Medical Bay Lockdown"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bqL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bqN" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
+"bqR" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bqT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"bqW" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/clothing/head/cmcap{
+ pixel_x = 8;
+ pixel_y = -1
+ },
+/obj/item/ammo_box/magazine/misc/mre{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"bqZ" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"brb" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"brf" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/cameras/almayer_network/vehicle{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"bri" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/req)
+"brj" = (
+/obj/structure/machinery/line_nexter{
+ id = "line1";
+ pixel_x = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"brn" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"brp" = (
+/obj/structure/supply_drop/bravo,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"brr" = (
+/obj/structure/machinery/cm_vending/clothing/medic/bravo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"brs" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"brt" = (
+/obj/structure/machinery/cm_vending/clothing/engi/bravo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"brv" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha)
+"brw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"brx" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bry" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"brA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"brC" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"brH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"brI" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"brJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"brO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"brP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_umbilical)
+"brQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"brS" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"brW" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"brX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"brY" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bsc" = (
+/obj/structure/machinery/computer/skills{
+ req_one_access_txt = "200"
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"bsd" = (
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/structure/machinery/door_control{
+ id = "cl_shutters";
+ name = "Privacy Shutters";
+ pixel_x = -5;
+ pixel_y = 6;
+ req_access_txt = "200"
+ },
+/obj/structure/machinery/door_control{
+ id = "RoomDivider";
+ name = "Room Divider";
+ pixel_x = -5;
+ pixel_y = -3;
+ req_access_txt = "200"
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"bse" = (
+/obj/structure/machinery/computer/arcade,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bsj" = (
+/obj/structure/machinery/line_nexter/med{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bsk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bst" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/operating_room_one)
+"bsw" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/chapel)
+"bsy" = (
+/obj/structure/closet/medical_wall{
+ pixel_x = 30
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/blue,
+/obj/item/reagent_container/food/drinks/cans/souto/blue,
+/obj/item/reagent_container/food/drinks/cans/souto/classic,
+/obj/item/reagent_container/food/drinks/cans/souto/diet/peach,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"bsz" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_three)
+"bsD" = (
+/obj/structure/closet{
+ name = "boxing attire"
+ },
+/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/black,
+/obj/item/clothing/under/shorts/black,
+/obj/item/clothing/under/shorts/grey,
+/obj/item/clothing/under/shorts/grey,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"bsF" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/emails{
+ dir = 1;
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/item/tool/kitchen/utensil/fork{
+ pixel_x = -9;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bsG" = (
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/cryo_cells)
+"bsJ" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/req)
+"bsK" = (
+/obj/effect/landmark/supply_elevator,
+/turf/open/floor/almayer/empty,
+/area/supply/station)
+"bsL" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8;
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/req)
+"bsN" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/folder/black,
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"bsO" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"bsP" = (
+/obj/structure/machinery/optable,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_three)
+"bsQ" = (
+/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/almayer/medical/operating_room_three)
+"bsR" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/obj/structure/machinery/computer/emails{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"bsS" = (
+/obj/structure/machinery/cm_vending/clothing/specialist/bravo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bsT" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bsU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bsV" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bsW" = (
+/obj/structure/machinery/cm_vending/clothing/leader/bravo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bsX" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bsZ" = (
+/obj/structure/machinery/power/monitor{
+ name = "Main Power Grid Monitoring"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"btc" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/squads/alpha)
+"btk" = (
+/obj/structure/sign/poster/pinup{
+ pixel_x = -30
+ },
+/obj/structure/sign/poster/hunk{
+ pixel_x = -25;
+ pixel_y = 10
+ },
+/obj/item/trash/buritto,
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"btm" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"btn" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"btp" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_umbilical)
+"btr" = (
+/obj/structure/closet/boxinggloves,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"btv" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"btx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"btz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"btC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"btD" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"btG" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"btM" = (
+/obj/effect/spawner/random/toolbox,
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"btN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"btO" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"btX" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_three)
+"btY" = (
+/obj/structure/machinery/door_control{
+ id = "hangarentrancesouth";
+ name = "South Hangar Shutters";
+ pixel_x = -30;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"bua" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"buc" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"bui" = (
+/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{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_one)
+"buj" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"buk" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"buq" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bur" = (
+/obj/structure/prop/almayer/missile_tube,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"buu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"buv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"buz" = (
+/obj/structure/supply_drop/charlie,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"buB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"buD" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"buH" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"buI" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"buJ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"buK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/lightreplacer,
+/obj/item/device/radio,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"buM" = (
+/obj/structure/machinery/cm_vending/clothing/smartgun/bravo,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"buN" = (
+/obj/structure/machinery/cm_vending/gear/smartgun,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"buO" = (
+/obj/structure/machinery/cm_vending/gear/medic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"buQ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/working_joe{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"buS" = (
+/obj/structure/machinery/cm_vending/gear/engi,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"buU" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"buW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"buX" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"bvb" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"bvc" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/sign/poster{
+ desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure.";
+ icon_state = "poster10";
+ name = "Koorlander Gold Poster";
+ pixel_x = 29;
+ pixel_y = 6;
+ serial_number = 10
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bvd" = (
+/obj/structure/machinery/constructable_frame,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"bve" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bvf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bvl" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"bvr" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bvx" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"bvz" = (
+/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/almayer/medical/operating_room_one)
+"bvF" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bvI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/obj/item/device/lightreplacer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bvK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bvL" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bvO" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"bvQ" = (
+/obj/structure/pipes/unary/outlet_injector,
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bvS" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull)
+"bvT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bvU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Liasion's Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/corporateliason)
+"bvV" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"bvY" = (
+/obj/structure/machinery/door_control{
+ id = "cl_shutters 2";
+ name = "Quarters Shutters";
+ pixel_x = -25;
+ pixel_y = 23;
+ req_access_txt = "200"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"bwc" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"bwd" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bwe" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"bwf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"bwg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bwh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha)
+"bwj" = (
+/obj/structure/pipes/standard/simple/visible,
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bwl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bwm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bwn" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bwF" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"bwH" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/computer/crew/alt{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bwQ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"bwR" = (
+/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/almayer/medical/lockerroom)
+"bwT" = (
+/obj/effect/decal/medical_decals{
+ icon_state = "triagedecaltopright"
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = 28
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bxd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bxf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out"
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/squads/req)
+"bxg" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"bxh" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "supply_elevator_railing"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/req)
+"bxi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/squads/req)
+"bxk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bxm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bxn" = (
+/obj/structure/target,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/cryo_cells)
+"bxo" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bxr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"bxs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bxx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bxB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"bxC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"bxD" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bxE" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/lower_engineering)
+"bxF" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"bxG" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 6
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"bxH" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"bxI" = (
+/obj/structure/pipes/binary/pump/on{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"bxX" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"byb" = (
+/obj/structure/barricade/handrail/medical,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"byc" = (
+/obj/structure/machinery/bioprinter{
+ stored_metal = 125
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_three)
+"byd" = (
+/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/almayer/medical/operating_room_four)
+"bye" = (
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "or4privacyshutter";
+ name = "Privacy Shutters";
+ pixel_y = -25
+ },
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"byg" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"byh" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"byk" = (
+/obj/structure/pipes/valve/digital/open{
+ dir = 4
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"byl" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 9
+ },
+/obj/structure/machinery/meter,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/lower_engineering)
+"bym" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"byp" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"byq" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"byr" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bys" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"byu" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"byv" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"byw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"byz" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"byA" = (
+/obj/structure/machinery/alarm/almayer,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"byC" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"byD" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"byF" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"byI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"byJ" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"byK" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 5
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"byL" = (
+/obj/structure/machinery/meter,
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"byM" = (
+/obj/structure/pipes/standard/simple/hidden/universal{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"byN" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"byO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/general_air_control/large_tank_control{
+ name = "Lower Deck Waste Tank Control"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"byQ" = (
+/obj/structure/machinery/suit_storage_unit/carbon_unit,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"byR" = (
+/obj/structure/machinery/suit_storage_unit/carbon_unit,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"byY" = (
+/obj/structure/bed,
+/obj/item/toy/farwadoll{
+ pixel_x = 5
+ },
+/obj/item/clothing/under/redpyjamas,
+/obj/item/bedsheet/orange,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bzg" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lockerroom)
+"bzj" = (
+/obj/structure/machinery/pipedispenser,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"bzo" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"bzs" = (
+/obj/structure/machinery/shower{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/westright,
+/obj/structure/window/reinforced/tinted/frosted,
+/obj/item/tool/soap/deluxe,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/corporateliason)
+"bzy" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bzz" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/disposal,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"bzA" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bzD" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "tcomms"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/telecomms)
+"bzH" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bzI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bzK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bzP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"bzQ" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bzR" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = -18
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"bzS" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"bzU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engine_core)
+"bzV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bzW" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bzX" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ name = "\improper Core Hatch"
+ },
+/obj/structure/disposalpipe/segment{
+ 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 = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bzY" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bAa" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bAd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/squads/alpha)
+"bAe" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 1
+ },
+/area/almayer/command/lifeboat)
+"bAf" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Atmospherics Wing"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/lower_engineering)
+"bAg" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bAh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cargo_container/wy/mid,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bAi" = (
+/obj/structure/cargo_container/wy/right,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bAr" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bAs" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/weapon_room)
+"bAu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 1;
+ name = "\improper High Security Storage"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/securestorage)
+"bAC" = (
+/obj/structure/shuttle/part/dropship2/transparent/nose_center,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"bAF" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"bAH" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"bAJ" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"bAK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wirecutters,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bAM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"bAN" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bAO" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bAP" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bAQ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bAS" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bAU" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bAV" = (
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bAX" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bAY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bAZ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"bBa" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_hallway)
+"bBb" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bBc" = (
+/obj/structure/closet/firecloset,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bBd" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cryo_cells)
+"bBe" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cryo_cells)
+"bBg" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"bBh" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bBi" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/liaison_suit/formal,
+/obj/item/clothing/under/liaison_suit,
+/obj/item/clothing/under/liaison_suit/outing,
+/obj/item/clothing/under/liaison_suit/suspenders,
+/obj/item/clothing/under/blackskirt{
+ desc = "A stylish skirt, in a business-black and red colour scheme.";
+ name = "liaison's skirt"
+ },
+/obj/item/clothing/under/suit_jacket/charcoal{
+ desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike.";
+ name = "liaison's black suit"
+ },
+/obj/item/clothing/under/suit_jacket/navy{
+ desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants.";
+ name = "liaison's navy suit"
+ },
+/obj/item/clothing/under/suit_jacket/trainee,
+/obj/item/clothing/under/liaison_suit/charcoal,
+/obj/item/clothing/under/liaison_suit/outing/red,
+/obj/item/clothing/under/liaison_suit/blazer,
+/obj/item/clothing/suit/storage/snow_suit/liaison,
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/marine/dress,
+/obj/item/clothing/glasses/sunglasses/big,
+/obj/item/clothing/accessory/blue,
+/obj/item/clothing/accessory/red,
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bBl" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"bBm" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/lower_engineering)
+"bBp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"bBq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"bBu" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bBv" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bBx" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bBy" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bBz" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bBA" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/weapon_room)
+"bBB" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/vehiclehangar)
+"bBC" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"bBN" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bBQ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "southcheckpoint";
+ name = "South Checkpoint Shutters";
+ req_one_access_txt = "3;12;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bBY" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bCd" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/lower_medical_lobby)
+"bCe" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bCg" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bCh" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/briefing)
+"bCi" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"bCj" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "southcheckpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/port_hallway)
+"bCl" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_three)
+"bCm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_three)
+"bCn" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_three)
+"bCo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"bCu" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"bCx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Briefing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"bCy" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"bCz" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"bCA" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"bCB" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bCD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bCE" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bCF" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bCG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/cryo_cells)
+"bCH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull)
+"bCI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"bCJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"bCM" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"bCN" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"bCO" = (
+/obj/item/tool/kitchen/tray{
+ layer = 2.9
+ },
+/obj/item/reagent_container/food/snacks/carpmeat{
+ layer = 3.3
+ },
+/obj/item/reagent_container/food/snacks/carpmeat{
+ layer = 3.3
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"bCP" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bCQ" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bCR" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"bCS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bCW" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bCY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"bCZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"bDe" = (
+/obj/structure/surface/table/almayer,
+/obj/item/circuitboard{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/obj/item/tool/crowbar{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"bDn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/closed/wall/almayer,
+/area/almayer/hallways/hangar)
+"bDs" = (
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"bDv" = (
+/obj/structure/machinery/cm_vending/clothing/medical_crew,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"bDx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "southcheckpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/port_hallway)
+"bDD" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/starboard_garden)
+"bDF" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room/notunnel)
+"bDH" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bDI" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bDL" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Auxiliary Combat Support Secondary Preparations";
+ req_one_access = "19;27;22"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cryo_cells)
+"bDO" = (
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/shipboard/weapon_room)
+"bDP" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"bDQ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bDS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bDT" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bDU" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bDV" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bDW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"bDX" = (
+/obj/structure/closet/crate,
+/obj/item/storage/backpack/industrial,
+/obj/item/storage/backpack/industrial,
+/obj/item/storage/backpack/marine,
+/obj/item/storage/backpack/marine,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bDY" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/medium_stack{
+ amount = 40;
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/stack/sheet/plasteel/small_stack{
+ amount = 15
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bDZ" = (
+/obj/structure/closet/crate/internals,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bEa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bEb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bEc" = (
+/obj/structure/machinery/computer/supplycomp,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bEd" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/cryo_cells)
+"bEg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bEh" = (
+/obj/structure/surface/rack,
+/obj/item/storage/backpack/marine,
+/obj/item/storage/backpack/marine,
+/obj/item/storage/backpack/marine,
+/obj/item/storage/backpack/marine,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bEi" = (
+/obj/structure/supply_drop/alpha,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"bEj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bEl" = (
+/obj/structure/machinery/computer/supply_drop_console/limited,
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"bEm" = (
+/obj/structure/supply_drop/delta,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"bEn" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bEo" = (
+/obj/structure/bed/sofa/south/grey/right{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"bEp" = (
+/obj/structure/filingcabinet,
+/obj/structure/sign/safety/galley{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bEr" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bEs" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/tool/extinguisher,
+/obj/item/tool/extinguisher,
+/obj/item/tool/extinguisher,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bEt" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"bEv" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"bEw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"bEx" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/weapon_room)
+"bEz" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bEA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/landinglight/ds2/delaytwo{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bED" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/landinglight/ds2{
+ dir = 8
+ },
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bEE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/obj/item/tool/warning_cone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bEF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/weapon_room)
+"bEG" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"bEH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bEK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bEN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/landinglight/ds1{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bEO" = (
+/obj/structure/machinery/light{
+ 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{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bEP" = (
+/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/almayer/medical/lockerroom)
+"bER" = (
+/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/almayer/medical/lockerroom)
+"bES" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bET" = (
+/obj/structure/machinery/cm_vending/sorted/medical,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
+"bEU" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bEV" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bFa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bFb" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
+/area/almayer/medical/lower_medical_medbay)
+"bFc" = (
+/obj/structure/closet/emcloset{
+ pixel_x = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bFe" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/item/frame/fire_alarm,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bFf" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/atmospipes,
+/obj/item/circuitboard/airalarm,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bFg" = (
+/obj/structure/surface/table/almayer,
+/obj/item/frame/fire_alarm,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bFj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bFk" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/weapon_room)
+"bFp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/living/cryo_cells)
+"bFq" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/living/cryo_cells)
+"bFr" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/auxiliary_officer_office)
+"bFs" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"bFt" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"bFu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bFA" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"bFC" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"bFJ" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "53"
+ },
+/area/almayer/hallways/hangar)
+"bFP" = (
+/obj/vehicle/powerloader{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bFR" = (
+/obj/docking_port/stationary/marine_dropship/lz1,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"bGb" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/port_hallway)
+"bGc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"bGe" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bGg" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bGh" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/port_hallway)
+"bGi" = (
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/port_hallway)
+"bGj" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/port_hallway)
+"bGk" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/port_hallway)
+"bGl" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/port_hallway)
+"bGn" = (
+/obj/structure/barricade/plasteel/metal,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"bGo" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ROlobby1";
+ name = "\improper RO Line 1"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"bGp" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/port_umbilical)
+"bGq" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"bGu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bGy" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bGF" = (
+/obj/structure/machinery/landinglight/ds2{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGG" = (
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGH" = (
+/obj/structure/machinery/landinglight/ds2/delaytwo{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGI" = (
+/obj/structure/machinery/landinglight/ds2/delaythree{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/prop/almayer/hangar_stencil,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGK" = (
+/obj/item/tool/warning_cone,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGM" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGN" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGO" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGP" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGQ" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGR" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bGT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancesouth";
+ name = "\improper South Hangar Podlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"bGU" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"bHa" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bHb" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bHd" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bHk" = (
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell/cl)
+"bHm" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"bHp" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/structure/machinery/disposal,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bHq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Particle Cannon Systems Room";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
+"bHt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bHu" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ name = "\improper Engineering Hallway"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/lower_engineering)
+"bHv" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/obj/structure/machinery/cell_charger,
+/obj/structure/sign/safety/high_rad{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bHy" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/belt/utility/full,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bHz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bHB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bHD" = (
+/obj/structure/ship_ammo/rocket/banshee,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"bHG" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"bHH" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancesouth";
+ name = "\improper South Hangar Podlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"bHI" = (
+/obj/structure/anti_air_cannon,
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/obj/item/tool/pen,
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/weapon_room)
+"bHL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bHP" = (
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/weapon_room)
+"bHT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bHV" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bHW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bHX" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bHY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bIb" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bId" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/paper,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bIe" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bIi" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"bIl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"bIn" = (
+/obj/structure/machinery/computer/cameras/almayer_network,
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bIo" = (
+/obj/structure/cargo_container/lockmart/left{
+ layer = 3.1;
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bIp" = (
+/obj/effect/step_trigger/ares_alert/mainframe,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES Mainframe Left";
+ name = "\improper ARES Mainframe Shutters";
+ plane = -7
+ },
+/obj/structure/machinery/door/poddoor/almayer/blended/white/open{
+ closed_layer = 3.2;
+ id = "ARES Emergency";
+ layer = 3.2;
+ name = "ARES Emergency Lockdown";
+ needs_power = 0;
+ open_layer = 1.9;
+ plane = -7
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"bIs" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bIw" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/computer/working_joe,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bIx" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bIy" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/navigation)
+"bIz" = (
+/mob/living/simple_animal/cat/Jones{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"bIA" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 29
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"bII" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"bIJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/chef_recipes,
+/obj/item/reagent_container/food/condiment/sugar{
+ pixel_x = 10
+ },
+/obj/item/clothing/head/chefhat,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"bIM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/hydroponics)
+"bIN" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"bIO" = (
+/turf/closed/wall/almayer/outer,
+/area)
+"bIR" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bIS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bIT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bIU" = (
+/obj/structure/disposalpipe/segment,
+/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 = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bIX" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bJb" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bJe" = (
+/obj/structure/surface/table/reinforced/black,
+/obj/item/explosive/grenade/high_explosive/training,
+/obj/item/explosive/grenade/high_explosive/training,
+/obj/item/explosive/grenade/high_explosive/training,
+/obj/structure/machinery/door_control{
+ id = "Firing_Range_2";
+ name = "range shutters";
+ pixel_x = 9;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cryo_cells)
+"bJf" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "Firing_Range_2";
+ name = "range shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"bJh" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/port_umbilical)
+"bJi" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bJj" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bJk" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bJl" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Auxiliary Support Officers Quarters";
+ req_one_access_txt = "37"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"bJo" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/repair_bay)
+"bJt" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/grunt_rnr)
+"bJw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/medical_pod/sleeper,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bJz" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bJC" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/charlie)
+"bJD" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"bJE" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"bJF" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bJH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/black{
+ pixel_x = -4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"bJI" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bJK" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/engineering/engine_core)
+"bJM" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bJN" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bJO" = (
+/obj/structure/machinery/light/small,
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"bJP" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bJQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bJR" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bJS" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wrench,
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/weapon_room)
+"bJT" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/weapon_room)
+"bJU" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bJX" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"bJY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"bJZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bKa" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bKb" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Particle Cannon Systems Room";
+ req_access = null;
+ req_one_access_txt = "7;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/weapon_room)
+"bKc" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bKd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/obj/item/storage/firstaid/fire,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bKe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"bKf" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bKh" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bKj" = (
+/obj/structure/machinery/gear{
+ id = "vehicle_elevator_gears"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bKm" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza."
+ },
+/obj/item/storage/beer_pack,
+/obj/item/reagent_container/food/drinks/cans/beer,
+/obj/item/reagent_container/food/drinks/cans/beer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"bKn" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bKp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bKq" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bKs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"bKt" = (
+/obj/structure/cargo_container/arious/left,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bKu" = (
+/obj/structure/cargo_container/arious/mid,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bKz" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bKA" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bKC" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/green,
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"bKD" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/window{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"bKE" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bKO" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/engineering_workshop)
+"bKQ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"bKT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bKU" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bKV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bKW" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engine_core)
+"bKX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/masks,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bLb" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"bLc" = (
+/obj/structure/machinery/light,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bLd" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"bLe" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bLf" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bLg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bLh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"bLi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"bLj" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bLk" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bLl" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bLm" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/machinery/keycard_auth{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bLo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bLp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bLq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bLr" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/sleep_console,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bLs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"bLt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bLu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/vehiclehangar)
+"bLv" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 8;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"bLw" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/item/clipboard,
+/obj/item/paper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"bLx" = (
+/obj/structure/pipes/vents/pump/siphon/on{
+ dir = 1;
+ id_tag = "oxygen_lower_out"
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"bLy" = (
+/turf/open/floor/engine/nitrogen,
+/area/almayer/engineering/airmix)
+"bLz" = (
+/obj/structure/pipes/vents/pump/siphon/on{
+ dir = 1;
+ id_tag = "nit_lower_out"
+ },
+/turf/open/floor/engine/nitrogen,
+/area/almayer/engineering/airmix)
+"bLA" = (
+/obj/structure/pipes/unary/outlet_injector{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"bLC" = (
+/obj/structure/pipes/vents/pump/siphon/on{
+ dir = 1;
+ id_tag = "mixed_lower_out"
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"bLD" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bLH" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bLJ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/surface/rack,
+/obj/item/tool/extinguisher,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bLO" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"bLP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"bLS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"bLT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/machinery/door_control{
+ id = "hangarentrancesouth";
+ name = "South Hangar Shutters";
+ pixel_y = 30;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bLX" = (
+/obj/vehicle/powerloader,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bMa" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bMq" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"bMt" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/port_hallway)
+"bMu" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "17;18;21";
+ vend_x_offset = 0;
+ vend_y_offset = 0
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"bMx" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bMy" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bMA" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bMB" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bMC" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bMD" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bMF" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bMJ" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"bMK" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine/nitrogen,
+/area/almayer/engineering/airmix)
+"bML" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"bMM" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"bMN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engine_core)
+"bMO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/CICmap,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bMP" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"bMQ" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 1";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bMR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bMS" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/red,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bMT" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/sign/safety/twilight_zone_terminator{
+ pixel_x = 8;
+ pixel_y = -24
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bMU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/blue,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bMV" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 7";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bMW" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 13";
+ buildstate = 1
+ },
+/obj/structure/sign/safety/rad_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bMX" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bMY" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bNa" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/black,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNe" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bNf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"bNg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"bNh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"bNi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNk" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNl" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/weapon_room)
+"bNm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bNn" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNo" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"bNp" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "vehicle1door";
+ name = "Vehicle Bay One"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bNq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wirecutters,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNs" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"bNt" = (
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/rollingpin,
+/obj/item/tool/kitchen/knife,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"bNA" = (
+/obj/structure/machinery/computer/ordercomp,
+/obj/structure/sign/safety/galley{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bNB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/wy_mre,
+/obj/effect/spawner/random/tool,
+/obj/item/tool/hand_labeler,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bNC" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"bND" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"bNE" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"bNF" = (
+/turf/open/floor/almayer{
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"bNG" = (
+/obj/structure/machinery/cm_vending/clothing/tl/charlie{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"bNL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"bNM" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"bNN" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"bNP" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bNQ" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"bNS" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bNT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bNW" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bNX" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"bNZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engineering_workshop)
+"bOc" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bOe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door_control/railings{
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bOh" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 16";
+ buildstate = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bOi" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bOk" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 2";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bOl" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 8";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bOm" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 14";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bOn" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Exterior Airlock";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bOo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"bOq" = (
+/obj/structure/prop/almayer/cannon_cables,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/shipboard/weapon_room)
+"bOs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/weapon_room)
+"bOv" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/hallways/port_hallway)
+"bOx" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"bOC" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"bOG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_y = 7
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"bOJ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Briefing Room"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"bOK" = (
+/obj/structure/machinery/door_control{
+ id = "ROlobby1";
+ name = "RO Line 1 Shutters";
+ pixel_x = 5;
+ pixel_y = -2;
+ req_one_access_txt = "1;21"
+ },
+/obj/structure/machinery/line_nexter_control{
+ id = "line1";
+ pixel_x = -4;
+ pixel_y = -2;
+ req_one_access_txt = "1;21"
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bOM" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bON" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bOO" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bOQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/sriracha{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"bOR" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bOT" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/cm_vending/gear/sea,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/sea_office)
+"bOX" = (
+/turf/open/floor/almayer{
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/hallways/port_hallway)
+"bOZ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"bPa" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"bPd" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 3";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bPe" = (
+/obj/structure/machinery/portable_atmospherics/powered/pump,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bPg" = (
+/obj/vehicle/powerloader,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPh" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bPk" = (
+/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,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"bPn" = (
+/obj/structure/machinery/prop/almayer/orbital_cannon_console,
+/obj/structure/bed/chair/ob_chair,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPo" = (
+/obj/structure/prop/almayer/cannon_cable_connector,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPq" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"bPr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"bPs" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"bPu" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/lower_medical_medbay)
+"bPz" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bPB" = (
+/obj/structure/machinery/door/window/eastleft{
+ req_one_access_txt = "2;21"
+ },
+/obj/structure/machinery/door/window/westright,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ROlobby1";
+ name = "\improper RO Line 1"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/surface/table/reinforced/almayer_blend/north,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"bPC" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPD" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bPF" = (
+/turf/closed/wall/almayer/white/outer_tile,
+/area/almayer/medical/medical_science)
+"bPG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"bPL" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/almayer,
+/area/almayer/living/cryo_cells)
+"bPM" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/living/cryo_cells)
+"bPO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer/uscm/directional{
+ dir = 8;
+ icon_state = "logo_c"
+ },
+/area/almayer/living/briefing)
+"bPR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bPS" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bPT" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bPU" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bPV" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bPW" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bPZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bQa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bQe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bQi" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/engine_core)
+"bQk" = (
+/obj/structure/machinery/power/smes/buildable,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/engine_core)
+"bQm" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bQt" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bQu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bQz" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bQA" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"bQD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"bQE" = (
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bQG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/black,
+/obj/item/book/manual/orbital_cannon_manual,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bQI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/largecrate/random/case/small{
+ pixel_y = 5
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"bQM" = (
+/obj/structure/machinery/medical_pod/bodyscanner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bQQ" = (
+/obj/structure/sign/ROsign{
+ layer = 3
+ },
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"bQS" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bQU" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"bQX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"bQZ" = (
+/obj/structure/sign/nosmoking_1,
+/turf/closed/wall/almayer,
+/area/almayer/squads/charlie)
+"bRa" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/living/cryo_cells)
+"bRc" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"bRe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"bRf" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/sriracha{
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"bRg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"bRi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bRj" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "engineeringladder"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bRk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bRm" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"bRo" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"bRr" = (
+/obj/structure/machinery/fuelcell_recycler,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bRs" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/bridge{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"bRu" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Engineering Workshop"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bRx" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "vehicle_elevator_railing_aux"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bRz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"bRA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"bRD" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bRF" = (
+/obj/structure/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"bRH" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cryo)
+"bRK" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"bRP" = (
+/obj/structure/machinery/body_scanconsole,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bRQ" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bRR" = (
+/obj/structure/machinery/door/window/eastleft{
+ req_one_access_txt = "2;21"
+ },
+/obj/structure/machinery/door/window/westright,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ROlobby2";
+ name = "\improper RO Line 2"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/surface/table/reinforced/almayer_blend,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"bRU" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/vehiclehangar)
+"bRV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bSa" = (
+/obj/structure/target,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/living/cryo_cells)
+"bSb" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"bSd" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bSe" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bSf" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/port_point_defense)
+"bSg" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hallways/port_umbilical)
+"bSj" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bSk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bSl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bSm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bSn" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"bSt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bSv" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/tankerbunks)
+"bSx" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/engine_core)
+"bSy" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engine_core)
+"bSD" = (
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = -4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"bSG" = (
+/obj/structure/machinery/power/smes/buildable,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/engine_core)
+"bSJ" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/delta)
+"bSK" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/tool/wrench,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"bSL" = (
+/obj/structure/sign/nosmoking_1,
+/turf/closed/wall/almayer,
+/area/almayer/squads/delta)
+"bSN" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"bSR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bST" = (
+/obj/structure/closet/secure_closet/hydroresearch,
+/obj/item/reagent_container/glass/watertank,
+/obj/item/reagent_container/glass/watertank,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"bSY" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"bSZ" = (
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"bTa" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"bTb" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/open/shower{
+ name = "cryo curtain"
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/bravo)
+"bTg" = (
+/obj/docking_port/stationary/emergency_response/external/hangar_port{
+ dwidth = 8
+ },
+/turf/open/space,
+/area/space)
+"bTi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bTl" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 4";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bTn" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/tankerbunks)
+"bTp" = (
+/obj/structure/machinery/portable_atmospherics/powered/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bTq" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Evacuation Airlock PL-3";
+ req_access = null
+ },
+/turf/open/floor/plating,
+/area/almayer/powered)
+"bTt" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2;
+ pixel_y = 21
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -2;
+ pixel_y = -4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"bTu" = (
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bTw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"bTx" = (
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"bTy" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"bTz" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"bTA" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"bTC" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bTE" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"bTG" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"bTH" = (
+/turf/open/floor/almayer,
+/area/almayer/living/tankerbunks)
+"bTI" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"bTJ" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bTM" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bTN" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"bTO" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_point_defense)
+"bTQ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bTR" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"bTS" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"bTT" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/shipboard/weapon_room)
+"bTU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/dogtag{
+ desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it."
+ },
+/obj/item/device/megaphone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"bTV" = (
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/tankerbunks)
+"bUa" = (
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"bUb" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"bUc" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "Secretroom";
+ indestructible = 1;
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bUd" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/port_hallway)
+"bUe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "hangarentrancesouth";
+ name = "South Hangar Shutters";
+ pixel_y = 30;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bUf" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"bUi" = (
+/obj/structure/sign/poster{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"bUo" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/squads/req)
+"bUp" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/reagent_container/food/condiment/hotsauce/franks{
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"bUq" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"bUr" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bUx" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"bUy" = (
+/obj/structure/closet/crate/ammo,
+/obj/structure/machinery/light/small,
+/obj/item/ammo_box/magazine/empty,
+/obj/item/ammo_box/magazine/empty,
+/obj/structure/machinery/door_control{
+ id = "crate_room3";
+ name = "storage shutters";
+ pixel_x = -26
+ },
+/obj/effect/decal/cleanable/cobweb2/dynamic,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"bUz" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bUA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver,
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"bUE" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bUF" = (
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/port_hallway)
+"bUG" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"bUI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"bUJ" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bUL" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bUM" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"bUN" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"bUO" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bUP" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"bUT" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"bUU" = (
+/obj/structure/machinery/cm_vending/clothing/tl/delta{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"bUW" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 5";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bUX" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 11";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bUY" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 17";
+ buildstate = 1
+ },
+/obj/structure/sign/safety/rad_haz{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bUZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"bVb" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bVd" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bVe" = (
+/obj/structure/closet/l3closet/general,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"bVi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"bVn" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bVo" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bVq" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bVw" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/briefing)
+"bVy" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/masks,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"bVB" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Weyland-Yutani Office"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "cl_shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/corporateliason)
+"bVC" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "cmp_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ name = "\improper Armory"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/armory)
+"bVE" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ name = "\improper Medical Bay";
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"bVF" = (
+/obj/structure/surface/rack,
+/obj/item/roller,
+/obj/item/roller,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/clothing/glasses/disco_fever{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"bVL" = (
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"bVM" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bVR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"bVT" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"bVU" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/port_point_defense)
+"bWb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"bWc" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Exterior Airlock";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bWd" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"bWe" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bWf" = (
+/obj/structure/machinery/light,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"bWh" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock SU-4";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"bWn" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bWo" = (
+/obj/docking_port/stationary/emergency_response/port2,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bWp" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"bWq" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"bWr" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/chapel)
+"bWs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bWw" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"bWC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/aft_hallway)
+"bWE" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bWJ" = (
+/obj/structure/machinery/shower{
+ dir = 4
+ },
+/obj/structure/machinery/door/window/eastright,
+/obj/structure/window/reinforced/tinted/frosted,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/auxiliary_officer_office)
+"bWK" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_s)
+"bWL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bWM" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"bWP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bWS" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/glass/bucket/mopbucket,
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"bWT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/box/co2_knife{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"bWV" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_hallway)
+"bWZ" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Engineering Workshop"
+ },
+/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/almayer/engineering/engineering_workshop)
+"bXc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/mre_pack/xmas2{
+ pixel_x = 5;
+ pixel_y = 9
+ },
+/obj/item/reagent_container/food/snacks/mre_pack/xmas3{
+ pixel_x = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"bXe" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"bXf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"bXl" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bXm" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bXn" = (
+/obj/structure/stairs/perspective{
+ dir = 8;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bXo" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "bridge1"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/navigation)
+"bXr" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 6";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bXs" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bXt" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 12";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bXu" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 18";
+ buildstate = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bXv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bXw" = (
+/obj/structure/machinery/bioprinter{
+ stored_metal = 125
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_two)
+"bXx" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_18";
+ pixel_y = 7
+ },
+/obj/structure/machinery/door_control{
+ id = "cl_shutters 3";
+ name = "Quarters Shutters";
+ pixel_x = -25;
+ req_access_txt = "200"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bXz" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"bXH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"bXP" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"bXQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bXR" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"bXS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engine_core)
+"bXU" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bXV" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bXW" = (
+/obj/structure/machinery/door_control{
+ id = "cl_shutters 3";
+ name = "Quarters Shutters";
+ pixel_x = 25;
+ req_access_txt = "200"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bXX" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bXY" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "bridge3"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 24;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/navigation)
+"bXZ" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bYa" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"bYc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"bYd" = (
+/obj/structure/bookcase/manuals/engineering,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"bYe" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"bYg" = (
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/obj/item/tool/shovel/spade{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bYh" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"bYi" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"bYj" = (
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"bYn" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/engineering/upper_engineering/port)
+"bYq" = (
+/obj/structure/cargo_container/wy/left,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bYu" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/cm_vending/sorted/uniform_supply,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"bYv" = (
+/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/almayer/squads/req)
+"bYw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"bYy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bYz" = (
+/obj/structure/sign/safety/south{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"bYE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/port_hallway)
+"bYI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bYK" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bYM" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"bYO" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bYP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bYQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"bYS" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"bYU" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bYV" = (
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bYW" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"bYY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ dir = 1;
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"bZa" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"bZc" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/notunnel)
+"bZe" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"bZg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"bZi" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bZj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"bZn" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"bZr" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"bZw" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/combat_correspondent)
+"bZz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"bZA" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ name = "\improper Engineering Hallway"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/lower_engineering)
+"bZD" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"bZE" = (
+/obj/structure/pipes/binary/pump/on{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"bZH" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"bZJ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/binoculars,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"bZK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"bZL" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"bZN" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"bZO" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"bZR" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 16;
+ pixel_y = -30
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"bZU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"cab" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"cac" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"cad" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"cae" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"caf" = (
+/obj/structure/machinery/computer/cryopod{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"cag" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"cah" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"cai" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"cal" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"can" = (
+/obj/structure/machinery/conveyor{
+ id = "req_belt"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"cat" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/vehiclehangar)
+"cau" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ access_modified = 1;
+ dir = 2;
+ name = "Firing Range";
+ req_access = null;
+ req_one_access_txt = "2;4;7;9;21"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cryo_cells)
+"cav" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/port_hallway)
+"cax" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cay" = (
+/obj/structure/closet/emcloset{
+ pixel_x = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"caz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/obj/item/book/manual/engineering_guide,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"caA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/fire,
+/obj/item/device/lightreplacer,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"caB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight,
+/obj/item/storage/firstaid/rad,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"caC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"caD" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"caE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"caF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"caM" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"caN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"caO" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"caS" = (
+/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/almayer/medical/operating_room_three)
+"caT" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_three)
+"cbg" = (
+/obj/structure/machinery/door/airlock/almayer/command{
+ dir = 2;
+ name = "\improper Command Ladder"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"cbh" = (
+/obj/structure/machinery/cm_vending/clothing/pilot_officer{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"cbm" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"cbn" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"cbo" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"cbr" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"cbu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"cbv" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"cbw" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"cbz" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"cbA" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"cbD" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"cbE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"cbG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"cbH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"cbM" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/glasses/welding,
+/obj/item/circuitboard,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"cbN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cbO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cbQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"cbR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"cbS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"cbU" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"cbV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/storage{
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"cbW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"cbX" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"cbZ" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/item/storage/firstaid{
+ pixel_x = -13;
+ pixel_y = 13
+ },
+/obj/item/clipboard,
+/obj/item/paper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"ccb" = (
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"ccd" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"cce" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Atmospherics Wing"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/aft_hallway)
+"ccg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"cck" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"ccq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"ccr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"ccs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"ccu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"ccv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"ccx" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/largecrate/random/case/small{
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccy" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/machinery/suit_storage_unit/carbon_unit,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccB" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/computer/general_air_control/large_tank_control{
+ name = "Lower Oxygen Supply Console"
+ },
+/obj/structure/pipes/standard/simple/hidden/universal{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccC" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/obj/structure/machinery/computer/general_air_control/large_tank_control{
+ name = "Lower Nitrogen Control Console"
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccD" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 10
+ },
+/obj/structure/machinery/meter,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccE" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/general_air_control/large_tank_control{
+ name = "Lower Mixed Air Control"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccF" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"ccG" = (
+/obj/structure/largecrate/random/secure,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"ccJ" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/repair_bay)
+"ccN" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/cryo_cells)
+"ccO" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"ccQ" = (
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"ccR" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 6
+ },
+/obj/structure/machinery/meter,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccS" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccT" = (
+/obj/structure/pipes/trinary/mixer{
+ dir = 4;
+ name = "Gas mixer N2/O2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccU" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"ccV" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 10
+ },
+/obj/structure/machinery/meter,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccW" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccX" = (
+/obj/structure/pipes/binary/pump/high_power/on{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"ccY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cdb" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"cdc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"cdd" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"cdf" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"cdk" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"cdm" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"cdn" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"cdo" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"cdp" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "Firing_Range_2";
+ name = "range shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"cdr" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"cdu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cdw" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"cdx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"cdy" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"cdz" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cdA" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"cdF" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"cdI" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"cdP" = (
+/obj/structure/machinery/cm_vending/clothing/marine/charlie{
+ density = 0;
+ layer = 4.1;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"cdT" = (
+/obj/structure/machinery/cm_vending/clothing/smartgun/charlie,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cdU" = (
+/obj/structure/machinery/cm_vending/gear/smartgun,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cdV" = (
+/obj/structure/machinery/cm_vending/gear/medic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cdX" = (
+/obj/structure/machinery/cm_vending/gear/engi,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cdZ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"cea" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"ceg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha)
+"ceo" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/closet/cabinet,
+/obj/item/clipboard,
+/obj/item/storage/lockbox/loyalty,
+/obj/item/storage/briefcase,
+/obj/item/reagent_container/spray/pepper,
+/obj/item/device/eftpos{
+ eftpos_name = "Weyland-Yutani EFTPOS scanner"
+ },
+/obj/item/device/portable_vendor/corporate,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"cer" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"ces" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"cet" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"ceu" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/starboard_garden)
+"cev" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_umbilical)
+"cew" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/port_umbilical)
+"cex" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"ceC" = (
+/obj/structure/prop/almayer/ship_memorial,
+/turf/open/floor/plating/almayer,
+/area/almayer/living/starboard_garden)
+"ceD" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock PU-3";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"ceE" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/cichallway)
+"ceK" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"ceQ" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/machinery/part_fabricator/dropship,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"ceR" = (
+/obj/structure/machinery/prop/almayer/computer{
+ pixel_y = 20
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"ceU" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/repair_bay)
+"ceZ" = (
+/obj/structure/bed/sofa/south/grey/left,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"cfk" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"cfo" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"cfp" = (
+/obj/structure/machinery/cm_vending/gear/spec,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cfq" = (
+/obj/structure/machinery/cm_vending/gear/leader,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cft" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"cfx" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cfy" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_umbilical)
+"cfz" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_umbilical)
+"cfA" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cfE" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"cfM" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "DeployWorkR";
+ name = "\improper Workshop Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/repair_bay)
+"cfN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"cfT" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"cgl" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"cgo" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie_delta_shared)
+"cgq" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"cgr" = (
+/obj/structure/machinery/cm_vending/clothing/medic/charlie,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cgs" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cgt" = (
+/obj/structure/machinery/cm_vending/clothing/engi/charlie,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cgu" = (
+/obj/structure/machinery/cm_vending/clothing/specialist/charlie,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cgv" = (
+/obj/structure/machinery/cm_vending/clothing/leader/charlie,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cgy" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"cgz" = (
+/obj/structure/bed/chair/comfy/charlie,
+/obj/structure/sign/poster{
+ desc = "Eat an EAT bar! ...Aren't they called MEAT bars?";
+ icon_state = "poster7";
+ name = "EAT - poster";
+ pixel_x = 27
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"cgA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cgE" = (
+/turf/open/floor/almayer,
+/area/almayer/living/cryo_cells)
+"cgG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tank/emergency_oxygen/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cgH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tank/oxygen/red,
+/obj/item/tool/screwdriver,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cgI" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cgJ" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"cgO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"cgT" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"chf" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"chk" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"chl" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"chm" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"chn" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"chp" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"chq" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"chu" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"chC" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"chE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddersouthwest";
+ name = "\improper South West Ladders Shutters"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"chL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"chM" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"chN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"chO" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"chP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"chQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"chR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"chS" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"chV" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"chW" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"cib" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"cic" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha)
+"cil" = (
+/obj/structure/machinery/light,
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"cim" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/port_umbilical)
+"cin" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_umbilical)
+"cio" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/port_umbilical)
+"cir" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"cit" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"ciu" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform,
+/obj/structure/platform_decoration{
+ dir = 10;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"civ" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering)
+"ciw" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"cix" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock PU-4";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"ciD" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ciF" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ciN" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"ciQ" = (
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"ciT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"ciU" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/four{
+ pixel_x = 31;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"cjd" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"cjf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"cjg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"cjh" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"cji" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"cjl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "s_umbilical";
+ name = "\improper Umbillical Airlock";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cjm" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "s_umbilical";
+ name = "\improper Umbillical Airlock";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"cjo" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/reduction{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cjw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"cjA" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cjC" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"cjE" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"cjK" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"cjS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"cjT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"cjW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/iv_drip,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ckd" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/kitchen/tray{
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/drinks/coffeecup{
+ pixel_x = 9;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/food/drinks/coffeecup{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_container/food/drinks/coffee{
+ pixel_x = -8;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/food/drinks/coffee{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"ckl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"ckm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"ckr" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"ckB" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Emergency Air Storage"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"ckI" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"ckK" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"ckP" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"ckQ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"ckR" = (
+/obj/structure/machinery/cm_vending/clothing/marine/delta{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"ckS" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "Interrogation Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Interrogation"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ckX" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"cla" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"clb" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"cle" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"clg" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"clh" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"cli" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"clj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"clk" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"cll" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"clm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"cln" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"clo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"clp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"clr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"cls" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/port_point_defense)
+"clw" = (
+/obj/structure/machinery/light{
+ dir = 8;
+ invisibility = 101;
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"cly" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/maint{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/port_hallway)
+"clz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/port_hallway)
+"clC" = (
+/obj/structure/stairs,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"clE" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta/medic,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"clF" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"clG" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta/spec,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"clH" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta/sl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"clI" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta/smart,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"clJ" = (
+/obj/structure/machinery/cm_vending/clothing/medic/delta,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clK" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clL" = (
+/obj/structure/machinery/cm_vending/clothing/engi/delta,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clM" = (
+/obj/structure/machinery/cm_vending/clothing/specialist/delta,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clN" = (
+/obj/structure/machinery/cm_vending/clothing/leader/delta,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"clP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"clR" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"clS" = (
+/obj/structure/machinery/cm_vending/gear/spec,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clT" = (
+/obj/structure/machinery/cm_vending/gear/leader,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clV" = (
+/obj/structure/machinery/computer/arcade,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"clW" = (
+/obj/structure/machinery/cm_vending/clothing/smartgun/delta,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clX" = (
+/obj/structure/machinery/cm_vending/gear/smartgun,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clY" = (
+/obj/structure/machinery/cm_vending/gear/medic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"clZ" = (
+/obj/structure/machinery/cm_vending/gear/engi,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"cmd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"cmg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"cmh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/disposalpipe/up/almayer{
+ dir = 8;
+ id = "almayerlink"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"cmk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"cml" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"cmm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"cmn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"cmp" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"cmC" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock SL-1";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"cmE" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_m_s)
+"cmF" = (
+/obj/structure/platform,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 6;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"cmH" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"cmI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ access_modified = 1;
+ name = "\improper Astronavigational Deck";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
+"cmJ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ access_modified = 1;
+ name = "\improper Astronavigational Deck";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
+"cmK" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"cmX" = (
+/obj/docking_port/stationary/escape_pod/west,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_m_p)
+"cnd" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock PL-1";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"cno" = (
+/obj/structure/stairs,
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"cnp" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"cnq" = (
+/obj/structure/machinery/line_nexter{
+ id = "line1";
+ pixel_x = -2
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"cnr" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"cnu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"cnv" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"cnE" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"cnG" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "47"
+ },
+/area/almayer/hallways/hangar)
+"cnH" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Computer Lab"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/computerlab)
+"cnM" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/yellow{
+ layer = 3.2
+ },
+/obj/item/bedsheet/yellow{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"cnR" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/eastleft{
+ req_access = list(19)
+ },
+/obj/structure/machinery/door/window/westright,
+/obj/item/paper_bin/uscm{
+ pixel_y = 6
+ },
+/obj/item/tool/pen{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/computerlab)
+"cnS" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/command/computerlab)
+"cnT" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 1;
+ name = "\improper Computer Lab";
+ req_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/computerlab)
+"cnU" = (
+/obj/structure/machinery/vending/hydronutrients,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"cnV" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"cnW" = (
+/obj/structure/machinery/optable,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/morgue)
+"cnX" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"cnY" = (
+/obj/item/tool/wirecutters/clippers,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"cnZ" = (
+/obj/item/tool/surgery/hemostat,
+/obj/item/tool/surgery/scalpel,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/morgue)
+"coa" = (
+/obj/item/tool/surgery/circular_saw,
+/obj/item/tool/surgery/cautery,
+/obj/item/tool/surgery/retractor,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"cod" = (
+/obj/structure/machinery/cm_vending/clothing/dress{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/command/cic)
+"cog" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"coj" = (
+/obj/structure/machinery/power/apc,
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"cop" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/tankerbunks)
+"cos" = (
+/obj/structure/machinery/light/small,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"coB" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"coG" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"coJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"coT" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"coZ" = (
+/turf/open/floor/almayer/research/containment/corner{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell)
+"cpf" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "ForeStarboardMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"cpj" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/paper,
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"cpk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/port_point_defense)
+"cpp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"cpw" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"cpJ" = (
+/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/almayer/medical/operating_room_three)
+"cpK" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ROlobby2";
+ name = "\improper RO Line 2"
+ },
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"cqa" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"cqm" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/folder/white{
+ pixel_y = 6
+ },
+/obj/item/folder/white{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"cqn" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/armory)
+"cqz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/black,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"cqJ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/general_equipment)
+"cqM" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"cqQ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"cqY" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/fancy/cigar/tarbacktube,
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"crc" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"cre" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"crh" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"crD" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/squads/req)
+"crK" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 1
+ },
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"crP" = (
+/obj/item/tool/kitchen/utensil/pfork,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"crW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"csl" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"csz" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"csG" = (
+/obj/structure/bed/chair/comfy/delta,
+/obj/item/trash/popcorn,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"csI" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"csZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"ctn" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/lobby)
+"cts" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"ctx" = (
+/obj/structure/bed{
+ icon_state = "abed"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ icon_state = "abed";
+ layer = 3.5;
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ layer = 3.2
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"ctC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"cuk" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cryo)
+"cus" = (
+/obj/docking_port/stationary/lifeboat_dock/starboard,
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/space/almayer/lifeboat_dock)
+"cuy" = (
+/obj/item/tool/warning_cone{
+ pixel_y = 13
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"cuC" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/engineering/upper_engineering/starboard)
+"cuY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"cvb" = (
+/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/almayer/squads/req)
+"cve" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "86"
+ },
+/area/almayer/hallways/hangar)
+"cvj" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"cvZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"cwd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"cwo" = (
+/obj/structure/largecrate/random/mini/chest{
+ pixel_x = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"cwJ" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"cwQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddersoutheast";
+ name = "\improper South East Ladders Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"cwS" = (
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"cwX" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "cicladder1"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/living/briefing)
+"cxc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"cxe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"cxk" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"cxo" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"cxA" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"cyo" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"cyE" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"cyG" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"cyU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"cyZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"czu" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull/u_m_p)
+"czB" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"czG" = (
+/obj/structure/machinery/recharge_station,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"czJ" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"czM" = (
+/obj/structure/sign/safety/intercom{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"cAm" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"cAF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"cAH" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"cBb" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"cBd" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/food/snacks/wrapped/chunk,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cBi" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"cBj" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"cBl" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"cBm" = (
+/obj/effect/projector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"cBs" = (
+/obj/structure/bed/chair,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha)
+"cBA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"cBB" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wirecutters,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"cBI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/machinery/door_control{
+ id = "hangarentrancenorth";
+ name = "North Hangar Podlocks";
+ pixel_y = -26;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"cCa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"cCd" = (
+/obj/structure/bookcase{
+ icon_state = "book-5"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"cCD" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/turf/open/floor/almayer/uscm/directional{
+ dir = 9
+ },
+/area/almayer/living/briefing)
+"cCE" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"cDe" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"cDj" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"cDn" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/glass{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/clothing/mask/cigarette{
+ pixel_y = 8
+ },
+/obj/item/clothing/mask/cigarette{
+ pixel_x = 4;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"cDs" = (
+/obj/structure/machinery/cryopod,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"cDC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/grunt_rnr)
+"cDW" = (
+/obj/structure/largecrate/supply/supplies/flares,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"cDZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/tankerbunks)
+"cEg" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"cEi" = (
+/obj/structure/sign/poster,
+/turf/closed/wall/almayer,
+/area/almayer/living/grunt_rnr)
+"cEl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/command/cic)
+"cEx" = (
+/obj/structure/machinery/vending/cola,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"cEB" = (
+/obj/structure/phone_base/no_dnd{
+ name = "Requisition Telephone";
+ phone_category = "Almayer";
+ phone_id = "Requisition";
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"cEC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"cEG" = (
+/obj/structure/sign/poster{
+ icon_state = "poster14";
+ pixel_x = -27
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"cEO" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"cES" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"cEY" = (
+/obj/structure/largecrate/supply/ammo/m41a/half,
+/obj/structure/largecrate/supply/ammo/pistol/half{
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"cFh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"cFn" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"cFA" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"cFO" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"cFP" = (
+/obj/structure/sign/safety/outpatient{
+ pixel_x = -17;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"cFX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"cGr" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"cGV" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"cHc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"cHl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"cHq" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"cHu" = (
+/turf/closed/wall/almayer/research/containment/wall/south,
+/area/almayer/medical/containment/cell/cl)
+"cHE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"cHO" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/lower_engineering)
+"cIe" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"cIi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"cIr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"cIG" = (
+/obj/structure/closet/emcloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cII" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"cIK" = (
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"cIU" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"cIW" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ name = "\improper Engineering Engine Monitoring"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cJu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"cJB" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"cJE" = (
+/obj/structure/sign/prop2,
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/sea_office)
+"cJM" = (
+/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"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"cJP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"cKt" = (
+/obj/structure/bed/sofa/south/grey/left,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"cKK" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "97"
+ },
+/area/almayer/hallways/hangar)
+"cKL" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"cKN" = (
+/obj/item/device/radio/intercom/normandy{
+ layer = 3.5;
+ pixel_x = 10
+ },
+/turf/closed/shuttle/dropship2{
+ icon_state = "54"
+ },
+/area/almayer/hallways/hangar)
+"cKX" = (
+/obj/structure/platform,
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"cKY" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"cLl" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/storage/fancy/cigar,
+/obj/item/tool/lighter/zippo,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"cLo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/command/airoom)
+"cLp" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"cLA" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"cLC" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"cLN" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/bridgebunks)
+"cLV" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"cMl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/processing)
+"cMN" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cMV" = (
+/obj/structure/sign/prop1{
+ pixel_x = -32;
+ pixel_y = 2
+ },
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"cMW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/processing)
+"cNc" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"cNe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"cNf" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/living/briefing)
+"cNH" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/containment{
+ id = "Containment Cell 4";
+ name = "\improper Containment Cell 4"
+ },
+/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{
+ dir = 1;
+ id = "Containment Cell 4";
+ locked = 1;
+ name = "\improper Containment Cell 4"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment/cell/cl)
+"cNX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"cNY" = (
+/obj/structure/machinery/computer/crew,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"cOK" = (
+/obj/structure/prop/invuln{
+ desc = "An inflated membrane. This one is puncture proof. Wow!";
+ icon = 'icons/obj/items/inflatable.dmi';
+ icon_state = "wall";
+ name = "umbilical wall"
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cOM" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"cPg" = (
+/obj/structure/sign/safety/north{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"cQc" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"cQg" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cQo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"cQv" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/general_equipment)
+"cQF" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"cQN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"cRb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"cRc" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"cRi" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"cRv" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/port_missiles)
+"cRK" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"cSk" = (
+/obj/structure/machinery/door/window/southleft,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"cSm" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"cSx" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"cSC" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"cSK" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/largecrate/supply/supplies/flares,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"cSN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"cSQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"cST" = (
+/obj/structure/bookcase{
+ icon_state = "book-5"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"cTf" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"cTC" = (
+/obj/structure/machinery/vending/walkman,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"cUb" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"cUv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"cVs" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"cVw" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cVJ" = (
+/obj/structure/largecrate/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"cVK" = (
+/obj/structure/surface/rack,
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/effect/spawner/random/facepaint,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"cWr" = (
+/obj/structure/machinery/photocopier{
+ density = 0;
+ layer = 2.9;
+ pixel_x = -3;
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = -19;
+ pixel_y = 5
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"cWs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"cWt" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"cWv" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/starboard_garden)
+"cWy" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"cWA" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"cWI" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"cWN" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/filingcabinet/security{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"cXi" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = -17;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"cXq" = (
+/obj/structure/largecrate/supply/supplies/water,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"cXC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"cXF" = (
+/obj/structure/machinery/flasher{
+ alpha = 1;
+ id = "Containment Cell 4";
+ layer = 2.1;
+ name = "Mounted Flash";
+ pixel_x = -15;
+ pixel_y = 30
+ },
+/turf/open/floor/almayer/research/containment/corner_var1{
+ icon_state = "containment_corner_variant_2"
+ },
+/area/almayer/medical/containment/cell/cl)
+"cXR" = (
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/squads/req)
+"cXW" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"cXY" = (
+/obj/item/stack/catwalk,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"cXZ" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"cYu" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"cYT" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"cZb" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"cZh" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "CIC_Conference";
+ name = "\improper CIC Conference Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/command/cichallway)
+"cZm" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"cZs" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"cZJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ name = "\improper Core Hatch"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"cZV" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/fancy/cigarettes/wypacket,
+/obj/item/tool/lighter,
+/turf/open/floor/almayer,
+/area/almayer/living/pilotbunks)
+"cZW" = (
+/obj/structure/bed{
+ icon_state = "abed"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ icon_state = "abed";
+ layer = 3.5;
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ layer = 3.2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"cZZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"dac" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddernortheast";
+ name = "\improper North East Ladders Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"daj" = (
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"daz" = (
+/turf/closed/wall/almayer/white/hull,
+/area/almayer/command/airoom)
+"dbe" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"dbn" = (
+/obj/structure/surface/table/almayer,
+/obj/item/spacecash/c200{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = 9
+ },
+/obj/item/reagent_container/pill/happy,
+/obj/item/clothing/glasses/disco_fever{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"dbq" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "plating_striped"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"dbv" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/computer{
+ pixel_x = 7
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 1;
+ pixel_y = 25
+ },
+/obj/item/prop/magazine/book/borntokill{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"dbw" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/suit_storage{
+ pixel_x = -17
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"dcd" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"dci" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"dck" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"dcp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"dcP" = (
+/obj/structure/machinery/body_scanconsole{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/surgery)
+"dcS" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ddj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"ddk" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"ddz" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"ddK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"deb" = (
+/obj/structure/bed,
+/obj/structure/machinery/flasher{
+ id = "Perma 2";
+ pixel_y = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"deg" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"deD" = (
+/obj/structure/machinery/prop/almayer/CICmap{
+ pixel_x = -5
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"deH" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"deT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"dfa" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"dfc" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_umbilical)
+"dfg" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"dfk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/shipboard/brig/cells)
+"dfp" = (
+/obj/structure/machinery/keycard_auth{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"dfC" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"dfO" = (
+/obj/structure/machinery/medical_pod/bodyscanner{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/surgery)
+"dgg" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"dgl" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"dgx" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"dgN" = (
+/obj/structure/surface/rack,
+/obj/item/tool/shovel/etool{
+ pixel_x = 6
+ },
+/obj/item/tool/shovel/etool,
+/obj/item/tool/wirecutters,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"dhQ" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard{
+ pixel_x = -4
+ },
+/obj/item/device/taperecorder{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/device/camera,
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"dhR" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "north_central_checkpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"dhU" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/port_hallway)
+"dhZ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"diw" = (
+/obj/structure/bed/chair/comfy/delta,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"diz" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat1-D4";
+ linked_dock = "almayer-lifeboat1";
+ throw_dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"diF" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"diJ" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"djm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/execution)
+"djp" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/plastic{
+ amount = 5
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 30;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"djL" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"djM" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/reagentgrinder/industrial{
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"djQ" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/closet/firecloset,
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"dka" = (
+/obj/structure/machinery/optable,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_four)
+"dkj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio/intercom/alamo{
+ layer = 2.9
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
+"dkq" = (
+/obj/structure/machinery/door_control{
+ id = "hangarentrancenorth";
+ name = "North Hangar Shutters";
+ pixel_x = -30;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"dkH" = (
+/obj/structure/bed/chair/comfy/delta,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"dkO" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/obj/structure/catwalk{
+ health = null
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"dkS" = (
+/obj/structure/machinery/shower,
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/tinted{
+ dir = 2
+ },
+/obj/item/clothing/mask/cigarette/weed,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"dll" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"dlp" = (
+/obj/structure/largecrate/supply/supplies/water,
+/obj/item/toy/deck{
+ pixel_y = 12
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"dls" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_x = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/surgery)
+"dmg" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/sign/safety/coffee{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"dmv" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"dmA" = (
+/turf/open/floor/almayer,
+/area/almayer/living/synthcloset)
+"dmE" = (
+/obj/structure/surface/rack,
+/obj/item/mortar_shell/incendiary,
+/obj/item/mortar_shell/incendiary,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"dmR" = (
+/obj/effect/glowshroom,
+/obj/effect/glowshroom{
+ pixel_y = 16
+ },
+/obj/structure/toilet{
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"dnk" = (
+/obj/structure/largecrate/supply/generator,
+/obj/item/reagent_container/food/drinks/bottle/whiskey{
+ layer = 2.9;
+ pixel_x = -10;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"dnr" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "24"
+ },
+/area/almayer/hallways/hangar)
+"dnC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/hydroponics)
+"dnE" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"dnH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"dnJ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"dnS" = (
+/obj/structure/safe,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"dnX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"dod" = (
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"dof" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
+ name = "\improper Upper Engineering"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"doj" = (
+/obj/structure/machinery/medical_pod/sleeper{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/surgery)
+"doJ" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"doP" = (
+/obj/structure/disposaloutlet{
+ density = 0;
+ desc = "An outlet for the pneumatic delivery system.";
+ icon_state = "delivery_outlet";
+ name = "delivery outlet";
+ pixel_x = -1;
+ pixel_y = 25;
+ range = 0
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"dpo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/waterhazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 14;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"dpy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"dpO" = (
+/obj/structure/machinery/cm_vending/clothing/marine/delta{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/delta)
+"dpV" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"dqb" = (
+/obj/structure/sign/safety/security{
+ pixel_x = -16
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"dqd" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"dqg" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"dqj" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/command/lifeboat)
+"dqw" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/weapon_room/notunnel)
+"dqD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"dqE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Conference and Office Area"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices)
+"dqH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/dart,
+/obj/item/weapon/dart,
+/obj/item/weapon/dart,
+/obj/item/weapon/dart/green,
+/obj/item/weapon/dart/green,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"dqN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"dqV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/vending/coffee,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "perma_lockdown";
+ name = "\improper Perma Cells Lockdown";
+ pixel_y = 24;
+ req_access_txt = "3"
+ },
+/obj/structure/sign/safety/coffee{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"drj" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"drk" = (
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"drt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"drT" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/surface/rack,
+/obj/item/storage/fancy/vials,
+/obj/item/storage/fancy/vials,
+/obj/item/storage/fancy/vials,
+/obj/item/storage/fancy/vials,
+/obj/item/storage/fancy/vials,
+/obj/item/storage/fancy/vials,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"dsk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"dsu" = (
+/obj/structure/largecrate/supply/supplies/tables_racks,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"dsw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/cryo)
+"dtH" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"dtM" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"dtN" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"dtZ" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"dum" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ id_tag = "cic_exterior";
+ name = "\improper Combat Information Center"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"duo" = (
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"dut" = (
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "tc04";
+ name = "Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = 28;
+ pixel_y = 23
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"duv" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"duw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"dux" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/starboard_garden)
+"duF" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"duT" = (
+/obj/structure/bed,
+/obj/structure/machinery/flasher{
+ id = "Cell 2";
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cells)
+"duV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"dvg" = (
+/obj/structure/reagent_dispensers/fueltank/custom,
+/obj/structure/sign/safety/chem_lab{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/chemistry)
+"dvl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"dvs" = (
+/obj/structure/machinery/cm_vending/clothing/vehicle_crew{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"dvD" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"dvF" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/wooden_tv/ot{
+ pixel_y = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"dvT" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"dwl" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"dwr" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/centrifuge{
+ layer = 3.1;
+ pixel_y = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"dwA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"dwI" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 1;
+ name = "\improper Engineering North Hall"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"dxm" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/general_equipment)
+"dxu" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"dxv" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"dxC" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"dxF" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down1";
+ vector_x = 19;
+ vector_y = -98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"dxK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"dxL" = (
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/reagent_dispensers/ethanoltank{
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"dxT" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"dyb" = (
+/obj/structure/machinery/smartfridge/chemistry,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"dyd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"dyp" = (
+/obj/structure/machinery/ares/cpu,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"dyx" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"dyF" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/machinery/door_control{
+ id = "cl_shutters 2";
+ name = "Quarters Shutters";
+ pixel_x = 25;
+ req_access_txt = "200"
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"dyK" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
+"dzF" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddernortheast";
+ name = "\improper North East Ladders Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"dAb" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"dAq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"dAO" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"dAX" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"dBj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/hydroponics)
+"dBp" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"dBs" = (
+/obj/structure/machinery/cm_vending/clothing/dress,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/command/cic)
+"dBG" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/upper_engineering)
+"dBH" = (
+/obj/structure/window/framed/almayer/white,
+/turf/open/floor/plating,
+/area/almayer/medical/lower_medical_medbay)
+"dBO" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_one)
+"dCe" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/coffee{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/cells)
+"dCh" = (
+/obj/structure/prop/invuln/pipe_water,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"dCr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"dCt" = (
+/obj/structure/surface/rack,
+/obj/item/book/manual/orbital_cannon_manual,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"dCx" = (
+/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/almayer/command/cichallway)
+"dCD" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"dCK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"dCP" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/box/lights/tubes{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_y = 19
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"dCS" = (
+/obj/structure/sign/safety/rad_shield{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"dDp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"dDt" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"dDC" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"dDL" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/research/main_terminal{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"dDQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"dEm" = (
+/obj/structure/machinery/power/apc,
+/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/almayer/medical/containment/cell)
+"dEn" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"dEt" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Engineering South Hall"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"dEC" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"dEQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/tabasco,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"dEV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"dFk" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/command/lifeboat)
+"dFC" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cryo)
+"dFF" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"dFR" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"dFV" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cell_charger,
+/obj/item/cell/apc,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"dGc" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"dGl" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"dGr" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"dGw" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"dGz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"dGC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"dGD" = (
+/obj/structure/closet/secure_closet{
+ name = "\improper Spare Restraints";
+ req_one_access_txt = "3"
+ },
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"dHd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"dHe" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"dHk" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"dHr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"dHu" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2;
+ pixel_y = 23
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"dHv" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/adv,
+/obj/item/device/defibrillator,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"dHV" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/pipes/unary/freezer{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"dHZ" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/bridgebunks)
+"dIi" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/plating/plating_catwalk{
+ allow_construction = 0
+ },
+/area/almayer/command/airoom)
+"dIl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"dIn" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 5
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"dII" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"dIR" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"dKm" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ layer = 3.33;
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ layer = 3.33;
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/stern_hallway)
+"dKp" = (
+/turf/open/floor/almayer/research/containment/corner{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell/cl)
+"dKL" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/engineering/airmix)
+"dLc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"dLt" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/almayer/shipboard/sea_office)
+"dLz" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"dLE" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"dMB" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/living/cryo_cells)
+"dMK" = (
+/turf/closed/wall/almayer/research/containment/wall/corner{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell)
+"dNe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"dNq" = (
+/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/almayer/medical/containment)
+"dNt" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "Firing_Range_1";
+ name = "range shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"dNx" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"dNB" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"dNM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
+ pixel_x = -5;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"dNZ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/staff_officer/armory/m4a1,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"dOl" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/fancy/cigar,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"dOL" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"dPm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"dPC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"dPU" = (
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"dPY" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"dQc" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{
+ id = "aft_door"
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"dQl" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"dQs" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"dQv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/surgery)
+"dQE" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"dQH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"dRh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/hydroponics)
+"dRv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"dRw" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"dRD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Dropship Control Bubble";
+ req_access = null;
+ req_one_access_txt = "3;22;2;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices/flight)
+"dRG" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"dRT" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"dRV" = (
+/obj/effect/landmark/crap_item,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"dSc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"dSn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/cells)
+"dSp" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"dSs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"dSA" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"dSJ" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -28
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"dSX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"dSZ" = (
+/obj/structure/bed/chair,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"dTc" = (
+/obj/structure/sign/poster{
+ desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
+ icon_state = "poster12";
+ name = "Beach Babe Pinup";
+ pixel_x = -30;
+ pixel_y = 6;
+ serial_number = 12
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/command/corporateliason)
+"dTt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"dTI" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"dTZ" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"dUE" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"dUF" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"dUI" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Port Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"dUS" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_two)
+"dUZ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"dVd" = (
+/obj/structure/machinery/seed_extractor{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"dVe" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/briefing)
+"dVm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Port Railguns and Viewing Room"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"dVs" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"dVu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"dVO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"dVZ" = (
+/obj/structure/machinery/pipedispenser,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"dWg" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"dWk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "CMP Office Shutters";
+ name = "CMP Office Shutters";
+ pixel_y = 32;
+ req_one_access_txt = "24;31"
+ },
+/obj/structure/machinery/door_control{
+ id = "Brig Lockdown Shutters";
+ name = "Brig Lockdown Shutters";
+ pixel_y = 24;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/faxmachine/uscm/brig/chief,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"dWm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"dWw" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"dWz" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/machinery/door_control{
+ id = "cl_shutters 2";
+ name = "Quarters Shutters";
+ pixel_x = 11;
+ pixel_y = 37;
+ req_access_txt = "200"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"dWJ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Flight Crew Quarters";
+ req_one_access_txt = "19;22"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"dWX" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"dXd" = (
+/obj/item/storage/fancy/cigarettes/kpack,
+/obj/structure/surface/rack,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"dXo" = (
+/obj/structure/machinery/photocopier,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"dXr" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"dXy" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"dXG" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"dXV" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = -12
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"dXY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"dYh" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"dYu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"dYK" = (
+/obj/item/folder/red{
+ desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup.";
+ name = "folder: 28";
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/toy/crayon{
+ pixel_x = 9;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"dYR" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/reagentgrinder{
+ pixel_y = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"dYX" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"dZd" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"dZr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"eaf" = (
+/obj/structure/machinery/cm_vending/clothing/military_police{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"ean" = (
+/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/almayer/medical/containment/cell)
+"eas" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"eax" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldpack,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"eaX" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ebd" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"ebn" = (
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"ebD" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"ebJ" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"ebN" = (
+/turf/closed/wall/almayer/white/reinforced,
+/area/almayer/command/airoom)
+"ebO" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ebY" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"eco" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"ecq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/marine_law{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 6
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"ecr" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/captain_mess)
+"ect" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"ecM" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"ecQ" = (
+/obj/structure/machinery/door_display/research_cell{
+ dir = 4;
+ id = "Containment Cell 4";
+ name = "Control Panel";
+ pixel_x = -15;
+ req_access_txt = "200"
+ },
+/obj/item/storage/fancy/cigarettes/blackpack{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/storage/fancy/cigarettes/wypacket{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/tool/lighter/zippo/gold{
+ pixel_x = 2
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"ecR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"ecZ" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "bridge4"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/navigation)
+"edv" = (
+/obj/structure/bed/sofa/south/white/left,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/medical_science)
+"edx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"edM" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"eed" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/command/computerlab)
+"eei" = (
+/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
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"eem" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/kitchen/tray,
+/obj/item/reagent_container/food/snacks/boiledrice,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"eep" = (
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"eet" = (
+/obj/structure/machinery/power/terminal{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"eeu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/machinery/door_control{
+ id = "kitchen";
+ name = "Kitchen Shutters";
+ pixel_x = -25
+ },
+/obj/structure/machinery/vending/dinnerware,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"eeN" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"efh" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutters";
+ pixel_x = -8;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/door_control{
+ id = "Brig Lockdown Shutters";
+ name = "Brig Lockdown Shutters";
+ pixel_x = -8;
+ pixel_y = 2;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/door_control{
+ id = "courtyard window";
+ name = "Courtyard Window Shutters";
+ pixel_x = -8;
+ pixel_y = 10;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/door_control{
+ id = "Cell Privacy Shutters";
+ name = "Cell Privacy Shutters";
+ pixel_x = 2;
+ pixel_y = 10;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/recharger{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"efK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"efU" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"egc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "tc01";
+ name = "Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = -28;
+ pixel_y = -23
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"egp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/platform_decoration,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"egq" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = -16
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"egt" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Chapel"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/chapel)
+"egB" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"egR" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"egS" = (
+/obj/structure/closet,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"ehg" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "98"
+ },
+/area/almayer/hallways/hangar)
+"ehi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"ehj" = (
+/obj/item/stack/catwalk,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"ehH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"ehR" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/red{
+ layer = 3.2
+ },
+/obj/item/bedsheet/red{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"eim" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"eiq" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/prop/magazine/dirty,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"eir" = (
+/obj/structure/shuttle/part/dropship2/transparent/nose_top_right,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"eiw" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"eiE" = (
+/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/almayer/medical/containment/cell)
+"eiH" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/cells)
+"eiK" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"eiN" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/bedsheetbin{
+ pixel_y = 6
+ },
+/obj/item/clothing/under/marine/dress,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"eiO" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"eiP" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"ejo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"ejp" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/aft_hallway)
+"ejt" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 4
+ },
+/area/almayer/command/lifeboat)
+"ejw" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/grunt_rnr)
+"ejK" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clothing/glasses/welding{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/item/tool/weldingtool{
+ pixel_x = -11;
+ pixel_y = 5
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ejY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"ekg" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"eko" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"eky" = (
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"ekO" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"ekY" = (
+/obj/structure/machinery/door/airlock/almayer/generic/glass{
+ name = "\improper Memorial Room"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/starboard_garden)
+"elf" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"elq" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"elA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"elE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_one)
+"elR" = (
+/turf/closed/wall/almayer/research/containment/wall/corner{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"eme" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"emn" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"emp" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/processing)
+"emr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"emx" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"emG" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"emK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"emO" = (
+/obj/structure/machinery/door/airlock/almayer/generic/corporate{
+ dir = 1;
+ name = "Corporate Liaison's Bedroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/corporateliason)
+"ene" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/securestorage)
+"enf" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"eni" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/magazine/book/spacebeast,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"enx" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"enz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/vending/snack,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"eoG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"eoM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/beer_pack,
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = -27;
+ serial_number = 11
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"eoP" = (
+/obj/structure/bed,
+/obj/structure/machinery/flasher{
+ id = "Perma 1";
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"eoT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"epq" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/sign/poster{
+ desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
+ icon_state = "poster12";
+ name = "Beach Babe Pinup";
+ pixel_x = 27;
+ serial_number = 12
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"epu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/lobby)
+"epA" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"eqb" = (
+/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/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/storage/fancy/cigar{
+ pixel_x = 6
+ },
+/obj/item/ashtray/glass{
+ pixel_x = 11;
+ pixel_y = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"eqk" = (
+/mob/living/simple_animal/mouse/brown,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"eqB" = (
+/obj/item/bedsheet/brown{
+ layer = 3.2
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"eqD" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 9
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"eqI" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"eqN" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/synthcloset)
+"eqP" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = 32;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"erd" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell/cl)
+"erh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"erx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/cryo)
+"erG" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"erN" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/pipes/vents/pump/no_boom{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"erS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"erZ" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"esi" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = 32
+ },
+/obj/structure/machinery/door_control{
+ id = "laddernorthwest";
+ name = "North West Ladders Shutters";
+ pixel_y = 24;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"esF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"esK" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = -12
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"esM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/gym)
+"esT" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 9
+ },
+/area/almayer/command/lifeboat)
+"etf" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "plating_striped"
+ },
+/area/almayer/command/lifeboat)
+"ets" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ layer = 3.33;
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ layer = 3.33;
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"etE" = (
+/obj/structure/prop/almayer/name_stencil,
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"etF" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"eua" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"eup" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/officer_study)
+"euN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Mainframe Left";
+ name = "ARES Mainframe Lockdown";
+ pixel_x = 24;
+ pixel_y = 24;
+ req_one_access_txt = "200;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"euO" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"euV" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 8;
+ icon_state = "logo_c"
+ },
+/area/almayer/command/cic)
+"euY" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"eva" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"evg" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/emails{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/pilotbunks)
+"evk" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/food/snacks/wrapped/barcardine{
+ pixel_y = -4
+ },
+/obj/item/reagent_container/food/snacks/wrapped/barcardine,
+/obj/item/reagent_container/food/snacks/wrapped/barcardine{
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"evl" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"evX" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north1)
+"ewo" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"ewr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"ewO" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"ewS" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"ewT" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"exi" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"exr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"ext" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"exy" = (
+/obj/structure/machinery/power/monitor{
+ name = "Main Power Grid Monitoring"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"eyd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"eyg" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/cryo)
+"eyG" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"eyQ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"eyR" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"eyV" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/sign/safety/water{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = -17;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"ezG" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lockerroom)
+"ezQ" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"ezU" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"ezX" = (
+/obj/structure/bed/chair/wood/normal,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"eAg" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"eAC" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"eAL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"eAU" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"eBd" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/obj/structure/sign/poster{
+ icon_state = "poster14";
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"eBe" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"eBg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"eBj" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"eBo" = (
+/obj/structure/machinery/cm_vending/gear/commanding_officer,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"eBC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_umbilical)
+"eBO" = (
+/obj/structure/bed,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"eBV" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"eBW" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"eBZ" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/firstaid/fire{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/adv,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"eCo" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform_decoration{
+ dir = 5;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"eCS" = (
+/obj/structure/bed/chair/comfy/delta,
+/obj/item/trash/popcorn,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"eDo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"eDu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"eDz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"eDG" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"eEc" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"eEk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"eEo" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"eEw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"eFj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"eFp" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/head/headband/red{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"eFH" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"eFK" = (
+/obj/structure/bed{
+ icon_state = "abed"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ icon_state = "abed";
+ layer = 3.5;
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ layer = 3.2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"eFM" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"eFT" = (
+/obj/structure/bed/sofa/vert/grey,
+/obj/structure/bed/sofa/vert/grey{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"eGb" = (
+/obj/structure/machinery/constructable_frame{
+ icon_state = "box_2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"eGg" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8;
+ id = "vehicle_elevator_railing_aux"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"eGh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/tool/surgery/scalpel{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"eGl" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -8;
+ pixel_y = 28
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = 14;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"eGr" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/surgery)
+"eGs" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"eGz" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"eGB" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"eGF" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"eGH" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"eGZ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"eHa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"eHf" = (
+/obj/structure/machinery/light/small,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"eHj" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"eHx" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/faxmachine/uscm/command,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"eHY" = (
+/obj/structure/surface/rack,
+/obj/item/device/taperecorder,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"eIA" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"eJd" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"eJg" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"eJh" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"eJu" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin5"
+ },
+/area/almayer/hallways/hangar)
+"eJQ" = (
+/obj/structure/prop/invuln{
+ desc = "An inflated membrane. This one is puncture proof. Wow!";
+ icon = 'icons/obj/items/inflatable.dmi';
+ icon_state = "wall";
+ name = "umbilical wall"
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/almayer/command/lifeboat)
+"eJX" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/ce_room)
+"eKg" = (
+/obj/structure/disposalpipe/segment{
+ layer = 5.1;
+ name = "water pipe"
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"eKD" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"eKH" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"eKI" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"eKJ" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/machinery/light{
+ dir = 4;
+ invisibility = 101;
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"eKK" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/command/corporateliason)
+"eKM" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"eKO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"eKT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/black,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"eLz" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"eMh" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Laundry Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/laundry)
+"eMP" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"eNi" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/ce_room)
+"eNv" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"eNx" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"eNI" = (
+/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/almayer/medical/containment)
+"eNL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/sheet/cardboard{
+ amount = 50;
+ pixel_x = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"eOd" = (
+/obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"eOh" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"eOk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"eOr" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"eOM" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock PU-6";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"eOR" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"eOW" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/sentencing,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"ePk" = (
+/obj/structure/airlock_assembly,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"ePs" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"ePA" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"ePB" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"ePY" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"eQi" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"eRe" = (
+/obj/structure/bed/chair/comfy/orange{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"eRu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ layer = 2.2;
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"eRy" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ dir = 2;
+ id_tag = "tc04";
+ name = "\improper Treatment Center"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"eRL" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"eRR" = (
+/obj/item/clothing/head/helmet/marine{
+ pixel_x = 16;
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/snacks/grown/poppy,
+/obj/effect/step_trigger/message/memorial,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"eSo" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"eSU" = (
+/obj/structure/prop/almayer/name_stencil{
+ icon_state = "almayer1"
+ },
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"eTd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/boonie{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/item/trash/popcorn,
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"eTo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 8;
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"eTN" = (
+/obj/structure/blocker/invisible_wall,
+/obj/structure/machinery/computer/shuttle/dropship/flight{
+ disabled = 1
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"eTO" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"eUh" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"eUn" = (
+/obj/structure/machinery/chem_master,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/chemistry)
+"eUz" = (
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"eUA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"eUR" = (
+/obj/structure/bed/chair/comfy/orange,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"eUU" = (
+/obj/structure/closet/secure_closet/brig{
+ name = "Spare Prison Uniforms"
+ },
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/under/color/orange,
+/obj/item/clothing/under/color/orange,
+/obj/item/clothing/under/color/orange,
+/obj/item/clothing/under/color/orange,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"eVj" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"eVm" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"eVv" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"eVQ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"eVT" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/machinery/disposal,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"eWp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair/comfy/charlie{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"eWF" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/basketball)
+"eWY" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"eXb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/medical_pod/bodyscanner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"eXo" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"eXq" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/offices/flight)
+"eXr" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"eYr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_x = -16
+ },
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"eYu" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/squad_changer{
+ pixel_x = -9
+ },
+/obj/structure/machinery/computer/card{
+ pixel_x = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"eYz" = (
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 1
+ },
+/obj/structure/machinery/computer/working_joe{
+ dir = 8;
+ pixel_x = 29
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"eYC" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"eYH" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"eYM" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2;
+ pixel_y = -22
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"eYQ" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/synthcloset)
+"eYR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"eYW" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"eZi" = (
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"eZj" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"eZz" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"eZH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"eZQ" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"fad" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"fau" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"faO" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"faX" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ dir = 1;
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"fbb" = (
+/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_x = -1;
+ pixel_y = 1
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"fbo" = (
+/obj/structure/machinery/door_control{
+ id = "kitchen2";
+ name = "Main Kitchen Shutters";
+ pixel_x = -28
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"fbv" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = -17;
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/reception{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"fbw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/body_scanconsole,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"fbx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"fbB" = (
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"fbY" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 2;
+ id = "Execution Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "perma_lockdown";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/execution)
+"fcf" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"fcy" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/autolathe,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"fcB" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"fcE" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"fcF" = (
+/obj/structure/surface/rack,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"fcG" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"fcI" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"fcM" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
+"fcP" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"fcX" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"fdj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/pouch/tools/full,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"fdA" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"fdE" = (
+/obj/item/clothing/mask/rebreather/scarf,
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"fdX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"fdZ" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lockerroom)
+"feq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"feD" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"feI" = (
+/obj/item/trash/cigbutt,
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"feS" = (
+/obj/structure/machinery/door_control{
+ id = "pobunk2";
+ name = "PO2 Privacy Shutters";
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"feY" = (
+/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/almayer/medical/operating_room_two)
+"ffE" = (
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"fgh" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/surface/rack,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"fgl" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"fgm" = (
+/obj/structure/machinery/atm{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"fgo" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_p)
+"fgx" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"fgE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/machinery/vending/cigarette,
+/obj/item/ashtray/plastic{
+ layer = 3.4;
+ pixel_x = 7;
+ pixel_y = 11
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 7;
+ pixel_y = 19
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"fgF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"fgR" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "courtyard window";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/cells)
+"fhf" = (
+/obj/structure/surface/rack,
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"fhA" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/surface/rack,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 8
+ },
+/obj/item/storage/belt/utility/full,
+/obj/item/clothing/suit/storage/hazardvest/black,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"fhH" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"fhQ" = (
+/obj/structure/closet/secure_closet/freezer/fridge/full,
+/obj/structure/machinery/light,
+/obj/item/reagent_container/food/condiment/sugar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"fiq" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_m_p)
+"fir" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/obj/item/tool/wirecutters,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"fjO" = (
+/obj/item/tool/wet_sign,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"fkn" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"fkO" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"fkW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/toy/handcard/uno_reverse_red{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/toy/deck/uno,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"fkX" = (
+/turf/closed/wall/almayer/research/containment/wall/corner{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell/cl)
+"flE" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"flP" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"flW" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/light{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"fmv" = (
+/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/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"fmB" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/pilotbunks)
+"fmS" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"fnl" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"fnx" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door/window/eastright{
+ access_modified = 1;
+ dir = 8;
+ req_access_txt = "19"
+ },
+/obj/structure/machinery/door/window/eastleft{
+ req_access_txt = "19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"fnA" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/device/radio,
+/obj/item/device/flashlight,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"fnC" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"fnI" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"fnQ" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/tinted{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"fnZ" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"foL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"foN" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/almayer/living/tankerbunks)
+"foP" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/machinery/door_control{
+ id = "containmentlockdown_S";
+ name = "Containment Lockdown";
+ pixel_x = 29;
+ pixel_y = 3;
+ req_one_access_txt = "28"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"foR" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"fpd" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"fps" = (
+/obj/structure/machinery/chem_master/industry_mixer,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"fpO" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"fpR" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/technology_scanner,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/starboard_atmos)
+"fpT" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"fpW" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"fqc" = (
+/obj/structure/machinery/vending/cigarette,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"fqe" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen/blue/clicky{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/tool/pen/red/clicky{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/tool/pen/clicky{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/paper_bin/wy{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"fqu" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"fqx" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"fqO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"fqZ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera";
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"frl" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"frz" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Exterior Airlock";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"frF" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"frJ" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"frM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"fsd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"fso" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ access_modified = 1;
+ name = "\improper Cryogenics Bay";
+ req_access = null;
+ req_one_access_txt = "1;3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cryo)
+"fsp" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"fsz" = (
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/flashbangs,
+/obj/item/storage/box/flashbangs{
+ pixel_x = 5;
+ pixel_y = 9
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"fsH" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"fsT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"fsU" = (
+/obj/structure/machinery/floodlight/landing{
+ name = "bolted floodlight"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"fsV" = (
+/obj/structure/target,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/living/cryo_cells)
+"ftf" = (
+/obj/effect/attach_point/crew_weapon/dropship2,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/hallways/hangar)
+"fti" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "vehicle_elevator_railing"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/vehiclehangar)
+"ftl" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"fut" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"fuz" = (
+/obj/structure/machinery/cm_vending/clothing/pilot_officer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"fuB" = (
+/obj/structure/machinery/light/small,
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"fuS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"fuT" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"fuX" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ id = "Perma 2L";
+ name = "\improper cell shutter"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/perma)
+"fuY" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/largecrate/supply/supplies/flares,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"fvd" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"fvf" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"fvu" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"fvv" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Port Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"fvB" = (
+/obj/structure/closet/secure_closet/staff_officer/armory/m4a1,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"fvJ" = (
+/obj/structure/machinery/cm_vending/sorted/medical,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
+"fvK" = (
+/obj/structure/sign/safety/galley{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"fvN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/port_point_defense)
+"fwD" = (
+/obj/item/reagent_container/food/snacks/grown/poppy{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/step_trigger/message/memorial,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"fwY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie_delta_shared)
+"fxu" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8
+ },
+/turf/closed/wall/almayer,
+/area/almayer/engineering/lower_engineering)
+"fxz" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"fxI" = (
+/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{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"fxO" = (
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"fxW" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"fxZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"fya" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"fyD" = (
+/obj/structure/machinery/light,
+/obj/structure/ladder{
+ height = 1;
+ id = "cicladder2"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/living/briefing)
+"fza" = (
+/turf/open/floor/almayer,
+/area/almayer/hull/lower_hull/l_m_s)
+"fzq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"fzP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/item/folder/black,
+/obj/item/storage/fancy/cigarettes/kpack,
+/obj/structure/machinery/door_control{
+ id = "CE Office Shutters";
+ name = "CE Office Shutters";
+ pixel_x = -6;
+ pixel_y = 18;
+ req_access_txt = list();
+ req_one_access_txt = "1;6"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/ce_room)
+"fAa" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/ammo_magazine/pistol{
+ current_rounds = 0
+ },
+/obj/item/weapon/gun/pistol/m4a3{
+ current_mag = null
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
+"fAo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"fAt" = (
+/obj/structure/largecrate/guns/merc{
+ name = "\improper dodgy crate"
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"fAS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"fBf" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"fBD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"fBL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"fBO" = (
+/obj/structure/machinery/chem_master{
+ vial_maker = 1
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"fCp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"fCL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"fDh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"fDj" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/defibrillator,
+/obj/item/device/defibrillator,
+/obj/item/device/defibrillator,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"fDn" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/armory)
+"fDG" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/upper_engineering)
+"fDS" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"fDU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"fDV" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/crowbar,
+/obj/item/clothing/head/headset{
+ pixel_y = -7
+ },
+/obj/item/clothing/glasses/welding{
+ layer = 3.6;
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"fEg" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 15";
+ buildstate = 1
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"fEk" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"fEC" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"fEN" = (
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"fER" = (
+/obj/structure/machinery/autolathe,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"fEV" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"fFe" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"fFh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/autopsy_scanner,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"fFD" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"fFL" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"fFO" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/morgue{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"fGg" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"fGu" = (
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "researchlockdownext";
+ name = "Window Shutters";
+ pixel_x = -26;
+ pixel_y = 6;
+ req_access_txt = "28"
+ },
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "researchlockdownext_door";
+ name = "Door Shutters";
+ pixel_x = -26;
+ pixel_y = 1;
+ req_access_txt = "28"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"fGH" = (
+/obj/effect/attach_point/electronics/dropship2{
+ dir = 1
+ },
+/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"fGN" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"fGY" = (
+/obj/structure/machinery/door_control{
+ id = "panicroomback";
+ name = "\improper Safe Room";
+ pixel_x = 25;
+ req_one_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"fHc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/hardhat{
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/obj/item/clothing/suit/storage/hazardvest{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/storage/hazardvest/yellow,
+/obj/item/clothing/suit/storage/hazardvest{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"fHh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"fHz" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"fHC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"fHF" = (
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"fHO" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"fHS" = (
+/obj/structure/sign/safety/rewire{
+ pixel_y = -32
+ },
+/obj/structure/machinery/door_control{
+ id = "perma_lockdown";
+ name = "\improper Perma Cells Lockdown";
+ pixel_x = 6;
+ pixel_y = -24;
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"fIf" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"fIx" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"fIH" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"fIX" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{
+ access_modified = 1;
+ name = "\improper Requisitions Auxiliary Storage Room";
+ req_one_access = "19;21"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"fIZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/magazine/boots/n117{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"fJm" = (
+/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/almayer/command/cichallway)
+"fJy" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/toy/deck{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/pilotbunks)
+"fJO" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "Firing_Range_1";
+ name = "range shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"fJT" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = -4
+ },
+/obj/item/seeds/wheatseed,
+/obj/item/seeds/wheatseed,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"fJX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"fJY" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/command/airoom)
+"fKe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"fKg" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"fKl" = (
+/obj/structure/surface/rack,
+/obj/item/tool/shovel/etool{
+ pixel_x = 6
+ },
+/obj/item/tool/shovel/etool,
+/obj/item/tool/wirecutters,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"fKt" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/prop/dam/crane{
+ bound_height = 32;
+ climbable = 1;
+ layer = 3.5;
+ pixel_y = -23
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"fKT" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/sign/safety/coffee{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"fKV" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/paper{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/paper{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/tool/pen/red/clicky{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"fLg" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/reagent_container/food/snacks/wrapped/barcardine{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"fLn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"fLS" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "SEA Office Shutters";
+ name = "SEA Office Shutters";
+ pixel_y = 12
+ },
+/obj/item/ashtray/plastic{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/structure/phone_base/rotary{
+ name = "Senior Enlisted Advisor Office Telephone";
+ phone_category = "Almayer";
+ phone_id = "Senior Enlisted Advisor's Office";
+ pixel_x = -3
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"fLX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"fMl" = (
+/obj/structure/machinery/door_control{
+ id = "ARES Operations Right";
+ name = "ARES Operations Shutter";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"fMt" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES Interior";
+ name = "\improper ARES Inner Chamber Shutters";
+ plane = -7
+ },
+/obj/effect/step_trigger/ares_alert/core,
+/obj/structure/machinery/door/poddoor/almayer/blended/white/open{
+ closed_layer = 3.2;
+ id = "ARES Emergency";
+ layer = 3.2;
+ name = "ARES Emergency Lockdown";
+ needs_power = 0;
+ open_layer = 1.9;
+ plane = -7
+ },
+/obj/structure/sign/safety/laser{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"fMA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"fMW" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{
+ access_modified = 1;
+ name = "\improper Flight Crew Quarters";
+ req_one_access_txt = "19;22"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"fNb" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/structure/machinery/computer/card{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"fNg" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"fNi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/bed/chair/office/dark,
+/obj/item/clothing/head/cmcap{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"fNA" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"fNC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"fOk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"fOz" = (
+/obj/structure/target{
+ name = "punching bag"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/sea_office)
+"fOJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"fOL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"fPn" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"fPp" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/yellow{
+ layer = 3.2
+ },
+/obj/item/bedsheet/yellow{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"fPu" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"fPB" = (
+/obj/structure/machinery/ares/processor/apollo,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"fQk" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"fQu" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "CMO Shutters";
+ name = "\improper CMO Office Shutters"
+ },
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/upper_medical)
+"fQF" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"fQK" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_m_p)
+"fRr" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"fRC" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"fRN" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"fSl" = (
+/obj/structure/machinery/line_nexter{
+ id = "line2";
+ pixel_x = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"fSm" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"fSK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"fTi" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"fTm" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"fTu" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/hull/lower_hull/l_f_p)
+"fTx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"fTF" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Laundry Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/laundry)
+"fTR" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"fTU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"fUn" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/obj/structure/sign/poster{
+ desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!";
+ icon_state = "poster14";
+ name = "propaganda poster";
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"fUA" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"fVz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"fVG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"fWT" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Engineering Workshop"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop)
+"fXd" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"fXg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"fXx" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"fXz" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"fXB" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"fXE" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm{
+ pixel_y = 6
+ },
+/obj/item/tool/pen{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"fXM" = (
+/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"fYb" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"fYc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"fYf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"fYn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"fYG" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"fYO" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin4"
+ },
+/area/almayer/hallways/hangar)
+"fYX" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"fYZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"fZq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"fZx" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"fZF" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"gac" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ access_modified = 1;
+ name = "\improper Security Checkpoint";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"gai" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"gaJ" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/cryo)
+"gaO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"gaQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"gbg" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = 14;
+ pixel_y = 24
+ },
+/obj/structure/sign/safety/laser{
+ pixel_y = 24
+ },
+/obj/structure/sign/safety/fibre_optics{
+ pixel_x = 14;
+ pixel_y = 38
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_y = 38
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Operations Right";
+ name = "ARES Operations Shutter";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"gbs" = (
+/obj/structure/surface/table/reinforced/black,
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = 5;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"gbQ" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/corporateliason)
+"gbX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"gcc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"gcI" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/overwatch_console{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = -17
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Charlie Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Charlie Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"gcK" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"gcN" = (
+/obj/structure/machinery/door/airlock/almayer/command{
+ access_modified = 1;
+ name = "\improper Senior Enlisted Advisor's Office";
+ req_access = null;
+ req_access_txt = "19;29"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/sea_office)
+"gcT" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"gdd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"gde" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"gdi" = (
+/obj/item/tool/wet_sign,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"gdo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"gdp" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/hangar)
+"gds" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/repair_bay)
+"gdO" = (
+/obj/effect/attach_point/weapon/dropship2/left_wing,
+/obj/structure/shuttle/part/dropship2/transparent/lower_left_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"gdS" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/laundry)
+"geg" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/hangar{
+ dir = 4;
+ pixel_y = 12
+ },
+/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
+ dir = 4;
+ name = "Dropship Remote Control Console";
+ pixel_y = -12;
+ shuttleId = "dropship_normandy";
+ disabled = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
+"gek" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/fancy/cigarettes/wypacket,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"gel" = (
+/turf/closed/wall/almayer/research/containment/wall/west,
+/area/almayer/medical/containment/cell/cl)
+"ger" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/wy{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/tool/pen{
+ pixel_x = 8
+ },
+/obj/item/clipboard{
+ pixel_x = -8
+ },
+/obj/item/folder/white{
+ pixel_x = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"geH" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"geW" = (
+/obj/structure/sign/prop1{
+ pixel_y = 32
+ },
+/obj/item/storage/fancy/cigar,
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ layer = 3.6;
+ pixel_x = 9;
+ pixel_y = 16
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ layer = 3.6;
+ pixel_y = 16
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ layer = 3.6;
+ pixel_x = -9;
+ pixel_y = 16
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"geX" = (
+/obj/structure/pipes/vents/scrubber,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"gfk" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"gfo" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"gfu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"gfE" = (
+/obj/structure/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"gfS" = (
+/obj/structure/sign/safety/cryo{
+ pixel_y = -26
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"gfW" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/lockerroom)
+"ggh" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"ggl" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"ggt" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"ggz" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_four)
+"ggJ" = (
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "tc03";
+ name = "Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = 28;
+ pixel_y = -23
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ggQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/airmix)
+"ghD" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"ghX" = (
+/obj/structure/window/reinforced/tinted{
+ pixel_y = -8
+ },
+/obj/structure/machinery/shower{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/tinted{
+ dir = 8
+ },
+/obj/item/toy/inflatable_duck,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/cells)
+"gio" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"gip" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"gir" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/engineering/engineering_workshop)
+"giB" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"giZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/cryo)
+"gjm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"gjn" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"gjq" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform,
+/obj/structure/platform_decoration{
+ dir = 10;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"gjt" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"gjv" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"gjw" = (
+/obj/structure/machinery/faxmachine/uscm/command{
+ density = 0;
+ department = "AI Core";
+ pixel_y = 32
+ },
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/machinery/computer/working_joe{
+ dir = 8;
+ pixel_x = 17;
+ pixel_y = -6
+ },
+/obj/item/storage/box/ids{
+ pixel_x = -4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"gjB" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/command/computerlab)
+"gjK" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"gka" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"gks" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"gkJ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"gkK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/card{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"glk" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "42"
+ },
+/area/almayer/hallways/hangar)
+"gll" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"glr" = (
+/obj/item/tool/warning_cone{
+ pixel_x = -20;
+ pixel_y = 18
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"gls" = (
+/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/almayer/medical/lower_medical_medbay)
+"glB" = (
+/obj/structure/sign/safety/chem_lab{
+ pixel_x = 5;
+ pixel_y = 29
+ },
+/obj/structure/machinery/chem_master,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"glM" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"glU" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"gmb" = (
+/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/almayer/squads/req)
+"gmj" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"gms" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"gnu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/green,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"gnv" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"gnz" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"goj" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"gol" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 1;
+ req_one_access = null;
+ req_one_access_txt = "7;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/weapon_room)
+"goy" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Dorms"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"goD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"goL" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"goO" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "38"
+ },
+/area/almayer/hallways/hangar)
+"gpc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 1;
+ name = "\improper Engineering North Hall"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"gpe" = (
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"gpi" = (
+/obj/structure/dropship_equipment/rappel_system,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"gpI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"gpY" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/lifeboat_pumps/north1)
+"gqq" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"gqK" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"gqP" = (
+/obj/structure/largecrate/random/case,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"gqW" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"grl" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"grG" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"grR" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/living/briefing)
+"grX" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"gsg" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/structure/machinery/door_control{
+ id = "Alpha_1";
+ name = "Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = 23;
+ specialfunctions = 4
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"gsm" = (
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"gsH" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Port Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"gsL" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"gsZ" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2;
+ pixel_y = -21
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"gtp" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"guc" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"guC" = (
+/obj/item/paper_bin/wy,
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/tool/pen/clicky,
+/obj/item/tool/pen/clicky,
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"guS" = (
+/obj/structure/reagent_dispensers/fueltank/custom,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"guW" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/sign/prop3{
+ pixel_x = 28
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/item/clothing/mask/gas{
+ pixel_y = 7
+ },
+/obj/item/clothing/mask/gas{
+ pixel_y = 3
+ },
+/obj/item/storage/fancy/candle_box{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"gvq" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"gvC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"gvU" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"gwm" = (
+/obj/structure/largecrate/random/case/small,
+/obj/item/device/taperecorder{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = -9;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"gwn" = (
+/obj/structure/machinery/ares/processor/bioscan,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"gwo" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"gwu" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"gww" = (
+/obj/structure/bed/chair,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"gwD" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/regular,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"gwF" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"gwM" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/item/storage/pill_bottle/tramadol/skillless{
+ layer = 2.9;
+ pill_type_to_fill = null;
+ pixel_y = 14
+ },
+/obj/structure/machinery/door_control{
+ id = "Delta_1";
+ name = "Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = 23;
+ specialfunctions = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"gwR" = (
+/obj/item/device/flashlight/lamp/green,
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"gwW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"gwY" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Starboard Viewing Room"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"gxh" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/obj/item/tool/screwdriver,
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"gxk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"gxr" = (
+/obj/structure/largecrate/random/barrel/green,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"gxO" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/living/gym)
+"gxP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell)
+"gxU" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"gyt" = (
+/obj/item/storage/firstaid/regular,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"gyv" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"gyy" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"gyC" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/two{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"gyN" = (
+/obj/structure/machinery/prop{
+ desc = "It's a server box...";
+ icon_state = "comm_server";
+ name = "server box"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"gyO" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
+"gzn" = (
+/obj/structure/machinery/landinglight/ds2/delaytwo{
+ dir = 8
+ },
+/obj/structure/platform_decoration,
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"gzr" = (
+/obj/structure/stairs/perspective{
+ dir = 8;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"gzw" = (
+/obj/structure/closet/hydrant{
+ pixel_x = 30
+ },
+/obj/item/reagent_container/hypospray/autoinjector/skillless,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"gzI" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "pobunk1";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/living/pilotbunks)
+"gzK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"gzV" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"gAd" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"gAe" = (
+/obj/structure/machinery/door_control{
+ id = "ARES JoeCryo";
+ name = "Working Joe Cryogenics Lockdown";
+ pixel_x = 24;
+ pixel_y = 8;
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"gAj" = (
+/obj/structure/bed/chair/comfy/charlie{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"gAl" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"gAt" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"gAz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/golden_cup{
+ desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172";
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"gAA" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha_bravo_shared)
+"gAS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"gBc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"gBi" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"gBo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"gBW" = (
+/obj/structure/machinery/floodlight/landing{
+ name = "bolted floodlight"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"gCd" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"gCf" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"gCl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"gCw" = (
+/obj/item/reagent_container/food/drinks/cans/beer{
+ pixel_x = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"gCI" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/cryo)
+"gCP" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/flashlight/lamp,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"gDq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"gDW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"gEg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices/flight)
+"gEo" = (
+/obj/structure/machinery/cryopod/right,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"gEv" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"gEK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"gFa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_point_defense)
+"gFd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/atmospipes{
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"gFs" = (
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"gFG" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"gGf" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"gGr" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"gGs" = (
+/obj/item/tool/crowbar/red{
+ pixel_x = -13;
+ pixel_y = -13
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 7
+ },
+/obj/item/tool/wirecutters{
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/bed{
+ can_buckle = 0;
+ desc = "A lightweight support lattice.";
+ icon = 'icons/obj/structures/structures.dmi';
+ icon_state = "latticefull";
+ layer = 2.1;
+ name = "lattice"
+ },
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"gGx" = (
+/obj/structure/filingcabinet/chestdrawer{
+ density = 0;
+ pixel_x = -16
+ },
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"gGI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"gGJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"gHg" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"gHo" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta/tl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"gHZ" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"gIh" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ damage_cap = 50000;
+ name = "\improper Chief Engineer's Bunk";
+ no_panel = 1;
+ req_access = list();
+ req_one_access_txt = "1;6"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/ce_room)
+"gII" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"gIJ" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"gIN" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"gJd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"gJq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/mousetraps,
+/obj/structure/sign/safety/high_rad{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"gJP" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"gKB" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"gKF" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/cameras/almayer_network/vehicle{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
+"gKH" = (
+/obj/structure/bed/chair/comfy/charlie,
+/obj/item/trash/uscm_mre,
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"gKJ" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"gKR" = (
+/obj/structure/closet/emcloset,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"gKS" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"gKZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"gLc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/hydroponics)
+"gLz" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"gLE" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 9;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"gLZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ id = "Delta_2";
+ name = "\improper Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"gMa" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"gMf" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"gMx" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"gMA" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 8;
+ req_one_access = list(2,34,30)
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"gMN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Interior";
+ indestructible = 1;
+ name = "ARES Chamber Lockdown";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ closed_layer = 4.1;
+ density = 0;
+ dir = 2;
+ id = "ARES Railing";
+ layer = 2.1;
+ open_layer = 2.1;
+ pixel_x = -1;
+ pixel_y = -1;
+ unacidable = 0;
+ unslashable = 0
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"gMU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer/uscm/directional{
+ dir = 4
+ },
+/area/almayer/living/briefing)
+"gNd" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"gNi" = (
+/obj/structure/bed/chair/comfy/delta,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"gNp" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"gNq" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "17;18;21";
+ vend_x_offset = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"gNr" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "69"
+ },
+/area/almayer/hallways/hangar)
+"gNx" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"gOs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Interior";
+ indestructible = 1;
+ name = "ARES Chamber Lockdown";
+ pixel_x = 24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ closed_layer = 4;
+ density = 0;
+ id = "ARES Railing";
+ layer = 2.1;
+ open_layer = 2.1;
+ unacidable = 0;
+ unslashable = 0
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"gPc" = (
+/obj/structure/machinery/power/terminal{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"gPr" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4
+ },
+/area/almayer/command/airoom)
+"gPF" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"gQl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"gQF" = (
+/obj/structure/bed/chair/comfy{
+ buckling_y = 2;
+ dir = 8;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"gQO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"gRd" = (
+/obj/structure/platform,
+/obj/structure/target{
+ desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces";
+ name = "Kolonel Ganbaatar"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"gRn" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull)
+"gRP" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"gSi" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer_network,
+/obj/item/storage/box/tapes{
+ pixel_x = -16
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"gSj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"gSk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"gSs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"gSV" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera";
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/biolab{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = -17;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"gTl" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cryo)
+"gTx" = (
+/obj/structure/machinery/vending/security,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"gTH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/skills{
+ dir = 4;
+ pixel_y = 18
+ },
+/obj/structure/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 4;
+ pixel_y = -18
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"gUf" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"gUv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"gUy" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"gUI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"gUL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/ashtray/glass,
+/obj/item/trash/cigbutt{
+ pixel_x = -10;
+ pixel_y = 13
+ },
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"gUN" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/command/airoom)
+"gUV" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/command/lifeboat)
+"gUX" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"gVq" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/containment)
+"gVA" = (
+/obj/structure/disposalpipe/down/almayer{
+ dir = 8;
+ id = "almayerlink_OT1_req"
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"gVF" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"gWG" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/upper_medical)
+"gWR" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"gXh" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"gXl" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access_txt = "5"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"gXq" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"gXs" = (
+/obj/effect/step_trigger/ares_alert/terminals,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ARES Operations Right";
+ name = "\improper ARES Operations Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"gXv" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"gXY" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"gYe" = (
+/obj/structure/machinery/vending/sea,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/sea_office)
+"gYl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"gYt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
+"gYB" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "Saferoom Channel";
+ pixel_x = 27
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"gYS" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"gZr" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/camera_film{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/device/camera/siliconcam{
+ pixel_x = -6;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"gZw" = (
+/obj/structure/bed/sofa/vert/grey/bot,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"gZG" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"gZK" = (
+/turf/open/floor/almayer,
+/area/almayer/living/auxiliary_officer_office)
+"gZP" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat2-D4";
+ linked_dock = "almayer-lifeboat2";
+ throw_dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"had" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"hal" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"ham" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"haq" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_a_p)
+"har" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"haB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"haM" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/constructable_frame,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"haQ" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wrench{
+ pixel_y = 3
+ },
+/obj/item/clothing/head/helmet/marine,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"haT" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"hbu" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"hbI" = (
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"hbZ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/obj/structure/machinery/computer/working_joe{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"hcf" = (
+/obj/item/bedsheet/brown{
+ layer = 3.2
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/structure/barricade/handrail{
+ dir = 4;
+ layer = 3.3;
+ pixel_y = 3
+ },
+/obj/structure/barricade/handrail{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"hcs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"hcw" = (
+/obj/structure/surface/table/reinforced/black,
+/obj/item/explosive/grenade/high_explosive/training,
+/obj/item/explosive/grenade/high_explosive/training,
+/obj/item/explosive/grenade/high_explosive/training,
+/obj/structure/machinery/door_control{
+ id = "Firing_Range_1";
+ name = "range shutters";
+ pixel_x = 9;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cryo_cells)
+"hcC" = (
+/obj/structure/disposalpipe/up/almayer{
+ id = "almayerlink_OT_req"
+ },
+/turf/closed/wall/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"hcI" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"hcZ" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"hdd" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"hdg" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"hdh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"hds" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"hdE" = (
+/obj/structure/filingcabinet,
+/obj/item/reagent_container/food/drinks/coffeecup/uscm{
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"hdR" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "OfficeSafeRoom";
+ name = "\improper Office Safe Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"heb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"hec" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"hee" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"heg" = (
+/obj/structure/machinery/floodlight,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engine_core)
+"heH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"heK" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Tool Closet"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"heQ" = (
+/obj/structure/bed/chair,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 26
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 21;
+ pixel_y = 27
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"heV" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"hfa" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"hfk" = (
+/obj/item/trash/crushed_cup,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"hfm" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/photocopier{
+ anchored = 0
+ },
+/obj/structure/sign/poster{
+ desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!";
+ icon_state = "poster14";
+ name = "propaganda poster";
+ pixel_y = 32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"hfw" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"hfy" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"hfO" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/frame/light_fixture,
+/obj/item/frame/light_fixture,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"hfQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"hgg" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"hgm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/binoculars{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/device/binoculars,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"hgt" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"hgF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/execution)
+"hgH" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"hgL" = (
+/obj/item/tool/warning_cone{
+ pixel_x = 4;
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"hgZ" = (
+/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/almayer/medical/operating_room_three)
+"hhe" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"hhn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"hhw" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_m_s)
+"hhA" = (
+/obj/structure/bed/sofa/vert/grey/bot,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"hif" = (
+/obj/structure/machinery/floodlight/landing,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"hit" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/bag/trash{
+ pixel_x = -3
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"hiB" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"hiM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"hiQ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"hji" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"hjk" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"hjs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/delta)
+"hjA" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"hjB" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ access_modified = 1;
+ name = "Kitchen";
+ req_one_access_txt = "30;19"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/grunt_rnr)
+"hki" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"hkm" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hkx" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"hkB" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/port_point_defense)
+"hkE" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/port_hallway)
+"hkG" = (
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"hlw" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hlz" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"hlI" = (
+/obj/structure/girder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hlU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ dir = 1;
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"hlX" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"hmc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"hme" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/hydroponics)
+"hmy" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"hmC" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"hmF" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"hmS" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"hng" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/accessory/storage/black_vest/acid_harness,
+/obj/item/clothing/accessory/storage/black_vest/acid_harness,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"hnV" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"hof" = (
+/obj/structure/machinery/computer/dropship_weapons/dropship2,
+/obj/structure/phone_base/rotary{
+ name = "Normandy Telephone";
+ phone_category = "Dropship";
+ phone_id = "Normandy";
+ pixel_x = 11;
+ pixel_y = 16
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"hon" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"hop" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"hoX" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"hpf" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"hpk" = (
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"hpw" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "94"
+ },
+/area/almayer/hallways/hangar)
+"hpz" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"hpN" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/computer/crew,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"hpS" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "crate_room3";
+ name = "\improper Storage Shutters"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"hpY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"hqh" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer/research/containment/entrance,
+/area/almayer/medical/containment/cell)
+"hqs" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"hqW" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ name = "\improper Medical Bay";
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"hrm" = (
+/obj/structure/closet/secure_closet/staff_officer/armory/shotgun,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"hrn" = (
+/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{
+ name = "\improper Research Reception Laboratory"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"hrF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"hrJ" = (
+/obj/structure/machinery/cm_vending/sorted/medical,
+/obj/structure/sign/safety/autodoc{
+ pixel_x = 20;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hrX" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"hsg" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/obj/structure/machinery/door/window/ultra{
+ dir = 8;
+ req_access_txt = "19"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"hsr" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"hss" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"hsW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"htb" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"htI" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"htL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/magazine/boots/n150{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"huK" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/living/cryo_cells)
+"huO" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"huU" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ access_modified = 1;
+ dir = 2;
+ name = "\improper Security Checkpoint";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"huX" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"hvp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"hvw" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/plating,
+/area/almayer/powered/agent)
+"hvH" = (
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"hwC" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"hwQ" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/execution)
+"hwS" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"hxe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"hxm" = (
+/obj/item/paper_bin/uscm{
+ pixel_y = 4
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"hxp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"hxG" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_missiles)
+"hxZ" = (
+/obj/structure/surface/rack,
+/obj/item/tool/shovel/spade{
+ pixel_x = -4
+ },
+/obj/item/tool/shovel/spade{
+ pixel_x = 4
+ },
+/obj/item/tool/shovel/spade,
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/reagent_container/glass/bucket,
+/obj/item/reagent_container/glass/watertank,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"hyc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"hyk" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"hyt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"hyw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"hyz" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/processing)
+"hyE" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "ARES StairsLock";
+ name = "ARES Exterior Lockdown"
+ },
+/obj/effect/step_trigger/ares_alert/access_control,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"hyQ" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/synthcloset)
+"hzb" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/combat_correspondent)
+"hzc" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/engineering/upper_engineering/notunnel)
+"hzg" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"hzs" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hzu" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"hzx" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "\improper Chief MP's Office";
+ req_access = null;
+ req_one_access_txt = "1;3"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "CMP Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"hzJ" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ id = "Cell 1";
+ name = "\improper Courtyard Divider"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cells)
+"hzL" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"hzM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"hzV" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"hAc" = (
+/obj/structure/surface/rack,
+/obj/item/mortar_shell/flare,
+/obj/item/mortar_shell/flare,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"hAz" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"hAG" = (
+/obj/structure/closet/crate/internals,
+/obj/item/handcuffs/cable/blue,
+/obj/item/handcuffs/cable/blue,
+/obj/item/handcuffs/cable/cyan,
+/obj/effect/spawner/random/toolbox,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"hAU" = (
+/obj/structure/machinery/medical_pod/bodyscanner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hAZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"hBc" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hBz" = (
+/obj/item/mortar_kit,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"hBC" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"hBF" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"hBU" = (
+/obj/structure/largecrate/random/secure,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"hCc" = (
+/obj/effect/attach_point/weapon/dropship2/right_wing,
+/obj/structure/shuttle/part/dropship2/transparent/lower_right_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"hCo" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"hCt" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"hCS" = (
+/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/almayer/medical/lower_medical_medbay)
+"hDw" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"hDL" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"hDR" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/syringe_case{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/syringe_case,
+/obj/item/storage/syringe_case{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hDX" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"hEt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = -8
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_y = 12
+ },
+/obj/item/clothing/head/militia/bucket{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = 8;
+ pixel_y = -1
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"hEV" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"hFw" = (
+/obj/structure/machinery/disposal/broken,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"hFC" = (
+/obj/structure/bed/chair/comfy,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"hFF" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ access_modified = 1;
+ name = "Autopsy";
+ req_access_txt = "25";
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/morgue)
+"hFW" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"hGB" = (
+/obj/structure/machinery/light,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"hGD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"hGN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_x = 16
+ },
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"hGO" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/light{
+ dir = 8;
+ invisibility = 101
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"hGZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"hHl" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/pouch/general/large,
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"hHr" = (
+/obj/structure/platform,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 6;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"hHJ" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "vehicle1door";
+ name = "Vehicle Bay One"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"hHR" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"hHU" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hII" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"hIL" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "cl_shutters 2";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_access_txt = "200";
+ req_one_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/corporateliason)
+"hJb" = (
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"hJk" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"hJp" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"hJu" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = -15
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"hJz" = (
+/obj/structure/sign/safety/restrictedarea,
+/obj/structure/sign/safety/security{
+ pixel_x = 15
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_f_s)
+"hJJ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"hKe" = (
+/obj/structure/sign/poster/safety,
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_f_s)
+"hKi" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"hKl" = (
+/obj/structure/pipes/vents/pump,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"hKq" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"hKQ" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"hKU" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsUpper";
+ name = "ARES Core Access";
+ pixel_x = -10;
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLock";
+ name = "ARES Exterior Lockdown";
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/obj/structure/surface/table/reinforced/almayer_B{
+ climbable = 0;
+ indestructible = 1;
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/phone_base/rotary{
+ name = "AI Reception Telephone";
+ phone_category = "ARES";
+ phone_color = "blue";
+ phone_id = "AI Reception"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Emergency";
+ name = "ARES Emergency Lockdown";
+ pixel_x = 10;
+ pixel_y = -24;
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"hLy" = (
+/obj/structure/shuttle/part/dropship2/transparent/middle_right_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"hLC" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"hLI" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"hLO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"hLS" = (
+/obj/structure/machinery/door/airlock/almayer/marine/delta{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"hMi" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"hMs" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"hMI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/binoculars,
+/obj/item/device/whistle{
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"hMN" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_three)
+"hNw" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/squads/charlie)
+"hND" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"hNM" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/stack/sheet/metal{
+ layer = 2.9;
+ pixel_y = 6
+ },
+/obj/item/tool/shovel/etool/folded,
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"hOe" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"hOR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"hPe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "researchlockdownext_door";
+ name = "\improper Research Doorway Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"hPg" = (
+/obj/structure/machinery/constructable_frame{
+ icon_state = "box_2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hPh" = (
+/obj/structure/bed/chair/comfy,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"hPo" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hPK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"hPN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/hydroponics)
+"hPT" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"hQc" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"hQU" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"hQW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"hQY" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hRa" = (
+/obj/structure/machinery/vending/snack{
+ pixel_x = -7
+ },
+/obj/structure/machinery/vending/coffee{
+ pixel_x = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"hRd" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"hRi" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"hRy" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"hRW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_y = 38
+ },
+/obj/structure/sign/safety/laser{
+ pixel_y = 24
+ },
+/obj/structure/machinery/computer/crew/alt{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 14;
+ pixel_y = 24
+ },
+/obj/structure/sign/safety/fibre_optics{
+ pixel_x = 14;
+ pixel_y = 38
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"hSk" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"hSt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"hSu" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"hSw" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"hSI" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ access_modified = 1;
+ dir = 2;
+ name = "Morgue";
+ req_access_txt = "25";
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/morgue)
+"hSL" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/repair_bay)
+"hTc" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"hTf" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"hTk" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_a_p)
+"hTl" = (
+/obj/structure/prop/server_equipment/yutani_server{
+ density = 0;
+ desc = "A powerful server tower housing various AI functions.";
+ name = "server tower";
+ pixel_y = 16
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"hTt" = (
+/obj/structure/machinery/brig_cell/cell_1{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/processing)
+"hTu" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"hTy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"hTF" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{
+ isopen = 1;
+ starting_helmet_type = null;
+ starting_mask_type = null;
+ starting_suit_type = null;
+ starting_tank_type = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"hTP" = (
+/obj/structure/machinery/door_control{
+ id = "crate_room2";
+ name = "storage shutters";
+ pixel_y = 26
+ },
+/obj/structure/machinery/recharge_station{
+ desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived.";
+ name = "Working Joe charging station"
+ },
+/obj/structure/sign/safety/synth_storage{
+ pixel_x = 8;
+ pixel_y = 36
+ },
+/obj/item/frame/light_fixture/small{
+ pixel_y = 17
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"hTT" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/reagentgrinder{
+ pixel_y = 3
+ },
+/obj/item/device/analyzer/plant_analyzer,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"hUc" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"hUg" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"hUW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"hVf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"hVz" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"hWa" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/ashtray/plastic,
+/obj/item/trash/cigbutt{
+ pixel_x = 4
+ },
+/obj/item/trash/cigbutt{
+ pixel_x = -10;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"hWq" = (
+/obj/structure/platform{
+ layer = 3.1
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/ashtray/plastic{
+ layer = 3.4;
+ pixel_x = 4
+ },
+/obj/structure/largecrate/random/case,
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"hWs" = (
+/obj/structure/machinery/flasher_button{
+ id = "briefing_flash";
+ name = "Briefing Flasher";
+ pixel_x = 32;
+ pixel_y = 27;
+ req_access_txt = "19"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"hWB" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"hWJ" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"hWO" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"hWU" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"hXb" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"hXd" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/ammo_box/magazine/misc/mre{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/obj/item/storage/box/wy_mre{
+ pixel_x = 5;
+ pixel_y = 2
+ },
+/obj/item/tool/kitchen/utensil/pfork{
+ pixel_x = -8;
+ pixel_y = 7
+ },
+/obj/item/tool/kitchen/utensil/pfork{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"hXm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"hXS" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"hXV" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"hXY" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"hYc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/tray,
+/obj/item/tool/kitchen/tray{
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/snacks/sliceable/bread{
+ pixel_y = 8
+ },
+/obj/item/tool/kitchen/knife{
+ pixel_x = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"hYn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/medical_pod/sleeper,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"hYG" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"hZj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"hZN" = (
+/obj/structure/machinery/medical_pod/bodyscanner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"iag" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"iah" = (
+/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/almayer/command/cichallway)
+"iaj" = (
+/obj/structure/bed/chair/comfy/orange{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"ial" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"iaq" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"iat" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"iaF" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"iaR" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"ibc" = (
+/obj/structure/machinery/conveyor_switch{
+ id = "req_belt"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"icp" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"icw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/machinery/medical_pod/sleeper,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"icX" = (
+/obj/structure/machinery/brig_cell/perma_2{
+ pixel_x = -32;
+ pixel_y = -4
+ },
+/obj/structure/machinery/door_control{
+ id = "Perma 2L";
+ name = "Perma 2 Lockdown";
+ pixel_x = -24;
+ pixel_y = 12;
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"idu" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "48"
+ },
+/area/almayer/hallways/hangar)
+"idx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"idX" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"ieo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"ieu" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/item/stack/sheet/metal{
+ layer = 4.1;
+ pixel_x = -3;
+ pixel_y = 14
+ },
+/obj/item/tool/weldingtool{
+ layer = 4.1;
+ pixel_x = 5;
+ pixel_y = 12
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/red{
+ layer = 3.2
+ },
+/obj/item/bedsheet/red{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"iey" = (
+/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_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"ieF" = (
+/obj/effect/projector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4
+ },
+/area/almayer/command/airoom)
+"ieH" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"ieX" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"ifb" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/tankerbunks)
+"iff" = (
+/obj/structure/sign/safety/reception{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"ifR" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"igf" = (
+/obj/structure/largecrate/random/case{
+ layer = 2.98
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"igh" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "59"
+ },
+/area/almayer/hallways/hangar)
+"igp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/monocle,
+/obj/item/reagent_container/food/drinks/coffee{
+ pixel_x = -7;
+ pixel_y = -2
+ },
+/obj/item/weapon/pole/fancy_cane{
+ pixel_x = 5
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"igr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"igt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ihn" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/souto/blue{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"ihw" = (
+/obj/structure/machinery/cm_vending/sorted/medical,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ihM" = (
+/obj/structure/machinery/cm_vending/clothing/marine/delta{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"ihX" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"ihY" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"iid" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 2;
+ req_one_access = null;
+ req_one_access_txt = "19;34;30"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"iit" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/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{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"iiz" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = -4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"iiC" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"iiP" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"iiZ" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"ije" = (
+/obj/item/tool/weldingtool,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ijn" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"ijp" = (
+/obj/structure/surface/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"ijU" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"ikM" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer_network,
+/obj/structure/machinery/computer/secure_data{
+ pixel_x = 17
+ },
+/obj/structure/machinery/computer/card{
+ pixel_x = -16
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ils" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_f_p)
+"ilv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/black_random{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/tool/stamp{
+ name = "Corporate Liaison's stamp";
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"ily" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"ilG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/prop/almayer/hangar_stencil{
+ icon_state = "dropship2"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"ilJ" = (
+/obj/structure/bed/chair,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"ilZ" = (
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"imo" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"imp" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"imy" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"ina" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"ind" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "78"
+ },
+/area/almayer/hallways/hangar)
+"inh" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"ins" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"inw" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering)
+"inC" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"inG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"inL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"inN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"ioj" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"iow" = (
+/obj/structure/machinery/cm_vending/sorted/attachments/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "15;16;21";
+ vend_y_offset = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"ioU" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/securestorage)
+"ioX" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"ipa" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"ipe" = (
+/obj/item/toy/crayon{
+ name = "chewed crayon";
+ pixel_y = 20;
+ uses = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"iph" = (
+/obj/structure/bed/chair/dropship/pilot{
+ dir = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer/dropship_two{
+ pixel_x = 8;
+ pixel_y = -16
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"ipD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"ipE" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"ipK" = (
+/obj/effect/step_trigger/message/memorial,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"ipQ" = (
+/obj/structure/surface/rack,
+/obj/item/storage/fancy/vials/empty,
+/obj/item/storage/fancy/vials/empty,
+/obj/item/storage/fancy/vials/empty,
+/obj/item/storage/fancy/vials/empty,
+/obj/item/storage/fancy/vials/empty,
+/obj/item/storage/fancy/vials/empty,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"ipT" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"iqd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"iqn" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"iqo" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"iqp" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "37"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"iqx" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"iqH" = (
+/obj/item/trash/chips{
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/trash/cheesie,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"irn" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"irr" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"iry" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"irJ" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"irS" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/almayer/lifeboat_pumps/south1)
+"irT" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"irU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"isC" = (
+/obj/effect/projector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"isH" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"isN" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"isS" = (
+/obj/item/stack/sheet/cardboard{
+ amount = 50
+ },
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"isW" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"itf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Interior";
+ indestructible = 1;
+ name = "ARES Chamber Lockdown";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ closed_layer = 4;
+ density = 0;
+ id = "ARES Railing";
+ layer = 2.1;
+ open_layer = 2.1;
+ unacidable = 0;
+ unslashable = 0
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"itR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"itX" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"iub" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"iun" = (
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"iur" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"iuu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/hardhat/orange{
+ pixel_x = -9;
+ pixel_y = 16
+ },
+/obj/item/clothing/suit/storage/hazardvest/blue{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/obj/item/clothing/head/hardhat{
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/obj/item/clothing/suit/storage/hazardvest{
+ pixel_x = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"iuy" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/briefing)
+"iuz" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/warhead,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"iuE" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"iuT" = (
+/obj/structure/closet/emcloset,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"ivb" = (
+/obj/structure/shuttle/part/dropship2/lower_left_wall,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"ivf" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/camera,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"ivg" = (
+/obj/structure/janitorialcart,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"ivs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"ivz" = (
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"ivB" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"ivM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"ivY" = (
+/obj/structure/bed/chair/dropship/pilot{
+ dir = 1
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"iwh" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"iwB" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"iwI" = (
+/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/almayer/squads/req)
+"iwJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_y = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/research/containment/entrance{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell)
+"iwW" = (
+/obj/structure/bed/chair/comfy/beige,
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"ixj" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/computer/crew/alt,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"ixv" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"ixC" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"ixD" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"ixN" = (
+/obj/structure/largecrate,
+/obj/item/folded_tent/reqs{
+ pixel_x = -3;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"ixP" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"ixQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"ixY" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "32"
+ },
+/area/almayer/hallways/hangar)
+"iyq" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 2;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Warden Office"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"iyH" = (
+/obj/structure/surface/table/reinforced/almayer_B{
+ climbable = 0;
+ desc = "A square metal surface resting on its fat metal bottom. You can't flip something that doesn't have legs. This one has a metal rail running above it, preventing something large passing over. Like you.";
+ indestructible = 1;
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"iyQ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"iyS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"izk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"izr" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 1
+ },
+/obj/structure/sign/poster/propaganda{
+ pixel_x = -27
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"izx" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"izG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"izU" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"izY" = (
+/obj/structure/machinery/autodoc_console,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"iAi" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/faxmachine/uscm/command{
+ department = "AI Core";
+ pixel_y = 8
+ },
+/obj/structure/phone_base/rotary{
+ name = "AI Core Telephone";
+ phone_category = "ARES";
+ phone_color = "blue";
+ phone_id = "AI Core";
+ pixel_x = 8;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"iAw" = (
+/obj/item/tool/warning_cone{
+ pixel_x = -12
+ },
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"iAz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"iAB" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"iAI" = (
+/obj/structure/bed/chair/vehicle{
+ pixel_x = 8
+ },
+/obj/structure/bed/chair/vehicle{
+ pixel_x = -8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"iAT" = (
+/obj/structure/sign/safety/south{
+ pixel_x = -17;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"iBt" = (
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_p)
+"iBG" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/reagent_dispensers/fueltank{
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"iBY" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"iCe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"iCu" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ dir = 1;
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"iCz" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"iCF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"iDd" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "vehicle_elevator_railing_aux"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"iDm" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"iDN" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"iDQ" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "31"
+ },
+/area/almayer/hallways/hangar)
+"iDT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = 7;
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"iEb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"iEg" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"iEr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"iEs" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"iFc" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"iFm" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"iFn" = (
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/pilotbunks)
+"iFp" = (
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/computerlab)
+"iFC" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/ce_room)
+"iFD" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"iFH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"iFM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ id = "Delta_1";
+ name = "\improper Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"iGd" = (
+/obj/item/device/radio/intercom/normandy{
+ pixel_y = 24
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin6"
+ },
+/area/almayer/hallways/hangar)
+"iGg" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_container/food/snacks/tomatomeat,
+/obj/item/reagent_container/food/snacks/tomatomeat,
+/obj/item/reagent_container/food/snacks/tomatomeat,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"iGn" = (
+/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/almayer/medical/operating_room_four)
+"iGK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"iGQ" = (
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 8
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"iHc" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/notunnel)
+"iHF" = (
+/obj/structure/largecrate/random,
+/obj/item/reagent_container/food/snacks/cheesecakeslice{
+ pixel_y = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"iHG" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/cells)
+"iIl" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"iIP" = (
+/obj/structure/toilet{
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"iIR" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_y = 7
+ },
+/obj/item/reagent_container/food/condiment/hotsauce/cholula{
+ pixel_x = 10;
+ pixel_y = 22
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"iIY" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"iJf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"iJB" = (
+/obj/structure/sign/safety/galley{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"iJS" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"iKb" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"iKc" = (
+/obj/structure/closet/firecloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"iKf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"iKw" = (
+/obj/structure/machinery/cryopod/right,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"iKD" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/device/flash,
+/obj/item/device/binoculars,
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"iKI" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"iKK" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"iKM" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/port_atmos)
+"iKX" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"iKZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"iLd" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"iLh" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"iLq" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"iLs" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "med2"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"iLO" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"iMm" = (
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"iMr" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"iMx" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"iMI" = (
+/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/almayer/medical/lower_medical_medbay)
+"iNc" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "19"
+ },
+/area/almayer/hallways/hangar)
+"iNZ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"iOh" = (
+/obj/structure/machinery/light/small,
+/obj/structure/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/armory)
+"iOD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"iPv" = (
+/obj/structure/bed/chair/comfy,
+/obj/structure/window/reinforced/ultra,
+/obj/structure/window/reinforced/ultra{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"iPD" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"iPH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"iPS" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"iQg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"iQi" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"iQj" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "bridge4"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"iQt" = (
+/obj/structure/largecrate/random/case/small,
+/obj/item/toy/deck{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/sign/poster{
+ desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
+ icon_state = "poster12";
+ name = "Beach Babe Pinup";
+ pixel_x = -30;
+ pixel_y = 6;
+ serial_number = 12
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"iQx" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"iRr" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"iRx" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"iRy" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"iRN" = (
+/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/almayer/medical/containment/cell)
+"iRS" = (
+/obj/item/trash/chips,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"iSm" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/mirror{
+ desc = "Do you remember who you are?";
+ icon_state = "mirror_broke";
+ name = "broken mirror";
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/item/device/cassette_tape/nam{
+ layer = 2.9;
+ pixel_x = -6;
+ pixel_y = 11
+ },
+/obj/structure/machinery/door_control{
+ id = "Delta_2";
+ name = "Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = 23;
+ specialfunctions = 4
+ },
+/obj/item/prop{
+ desc = "A handful of rounds to reload on the go.";
+ icon = 'icons/obj/items/weapons/guns/handful.dmi';
+ icon_state = "bullet_2";
+ name = "handful of pistol bullets (9mm)";
+ pixel_x = -8;
+ pixel_y = 29
+ },
+/obj/item/prop{
+ desc = "A bunch of tiny bits of shattered metal.";
+ icon = 'icons/obj/items/shards.dmi';
+ icon_state = "shrapnelsmall";
+ name = "piece of shrapnel";
+ pixel_x = -1;
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"iSZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/black,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"iTf" = (
+/obj/structure/closet/crate/trashcart,
+/obj/item/clothing/gloves/yellow,
+/obj/item/device/multitool,
+/obj/item/tool/screwdriver{
+ icon_state = "screwdriver7"
+ },
+/obj/item/tool/crowbar/red,
+/obj/item/book/manual/engineering_hacking,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"iTw" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/bridgebunks)
+"iTz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"iTI" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"iTK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"iTN" = (
+/obj/item/stool{
+ pixel_x = -15;
+ pixel_y = 6
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"iUk" = (
+/obj/structure/machinery/door/airlock/almayer/marine/charlie{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"iUo" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = 7;
+ pixel_y = -25
+ },
+/obj/structure/surface/rack,
+/obj/item/storage/box/autoinjectors{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/item/storage/box/beakers{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/storage/box/sprays{
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"iUW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/tool/crowbar/red,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"iUZ" = (
+/obj/docking_port/stationary/escape_pod/cl,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_p)
+"iVj" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"iVo" = (
+/obj/structure/bed/sofa/south/grey/right,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"iVy" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"iVE" = (
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"iVO" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/revolver/m44{
+ desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel."
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"iVZ" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/folder/black,
+/obj/item/storage/bible/booze,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door_control{
+ id = "CO-Office";
+ name = "Door Control";
+ normaldoorcontrol = 1;
+ pixel_x = 18;
+ req_access_txt = "31"
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"iWc" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"iWd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"iWx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"iWE" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"iWL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"iWN" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"iWR" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"iXb" = (
+/obj/structure/bed/chair/comfy/delta{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"iXt" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"iXT" = (
+/obj/item/trash/uscm_mre,
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"iXU" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/marine_law{
+ pixel_y = 3
+ },
+/obj/item/book/manual/evaguide,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"iXW" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"iYe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"iYf" = (
+/obj/structure/machinery/cm_vending/clothing/medical_crew{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/medical/hydroponics)
+"iYi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"iYj" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"iYp" = (
+/obj/item/paper/almayer_storage,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"iYr" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/starboard_garden)
+"iYt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"iYx" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"iZg" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"iZw" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"iZG" = (
+/obj/structure/window/framed/almayer/hull,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/chief_mp_office)
+"iZH" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/port_hallway)
+"iZP" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform,
+/obj/structure/platform_decoration{
+ dir = 10;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"iZU" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"iZX" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"jac" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"jaj" = (
+/obj/item/ammo_box/magazine/misc/mre/empty{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/reagent_container/food/drinks/cans/aspen{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"jaH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/paper_bin/uscm{
+ pixel_y = 6
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"jaP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"jaR" = (
+/obj/structure/largecrate/random/mini/small_case/b{
+ pixel_x = 8;
+ pixel_y = -1
+ },
+/obj/structure/largecrate/random/mini/small_case/c{
+ pixel_x = -7;
+ pixel_y = -1
+ },
+/obj/structure/largecrate/random/mini/small_case{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/obj/item/trash/crushed_cup{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"jbb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"jbq" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/command/lifeboat)
+"jbt" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"jbB" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"jbH" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"jbK" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"jbO" = (
+/obj/structure/machinery/cm_vending/sorted/medical,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"jbX" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"jcf" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/processing)
+"jcK" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"jcP" = (
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"jcZ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"jdk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"jdm" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/trash/USCMtray,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"jdy" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"jdG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_three)
+"jdQ" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/item/tool/soap,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"jea" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"jeb" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"jeq" = (
+/obj/structure/surface/rack,
+/obj/item/storage/box/pillbottles{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/item/storage/box/pillbottles{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/storage/box/pillbottles,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"jew" = (
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"jez" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"jeK" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"jeO" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"jeQ" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/living/cryo_cells)
+"jeU" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"jfm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"jfD" = (
+/obj/structure/sign/safety/security{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"jfK" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"jfM" = (
+/obj/structure/machinery/power/monitor{
+ name = "Core Power Monitoring"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"jfZ" = (
+/obj/structure/target{
+ name = "punching bag"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"jge" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"jgg" = (
+/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/almayer/medical/containment/cell)
+"jgk" = (
+/obj/structure/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"jgl" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"jgu" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 29
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile"
+ },
+/area/almayer/living/captain_mess)
+"jgw" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/notunnel)
+"jgC" = (
+/obj/structure/closet/emcloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"jgF" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"jgJ" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"jgM" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"jgU" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"jhb" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/turf/closed/wall/almayer,
+/area/almayer/living/cryo_cells)
+"jhn" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"jht" = (
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"jhx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"jhy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"jhA" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"jhD" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"jhW" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/bridgebunks)
+"jhY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"jiw" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"jiU" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_x = 26
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"jiX" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"jjn" = (
+/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/almayer/medical/lower_medical_medbay)
+"jjs" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "vehicle_elevator_railing_aux"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"jjM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"jjS" = (
+/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{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"jjT" = (
+/obj/structure/machinery/light,
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"jjZ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/vehicle/powerloader{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/vehiclehangar)
+"jkd" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_hallway)
+"jkj" = (
+/obj/structure/machinery/portable_atmospherics/powered/pump,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/starboard_atmos)
+"jkl" = (
+/obj/structure/morgue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"jks" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "Firing_Range_2";
+ name = "range shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"jkz" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/box/handcuffs{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/box/ids{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/handcuffs,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"jkS" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 2;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/main_office)
+"jkV" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/bolted{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"jlj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/farwadoll{
+ desc = "A USCM approved plush doll. It's not soft and hardly comforting!";
+ force = 15;
+ icon_state = "therapyred";
+ layer = 4.1;
+ name = "Sergeant Huggs";
+ pixel_x = 7;
+ pixel_y = -1;
+ throwforce = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"jlA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"jlG" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer/research/containment/entrance,
+/area/almayer/medical/containment/cell)
+"jlN" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_x = -6
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_x = 9
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"jlQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering/port)
+"jlT" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"jlX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"jmg" = (
+/obj/structure/largecrate/supply/ammo/shotgun,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"jmK" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/cryo_cells)
+"jmP" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"jmQ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"jmR" = (
+/obj/structure/ladder/fragile_almayer{
+ height = 2;
+ id = "kitchen"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"jmY" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"jnf" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"jnk" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"jnw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/reception{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"jnA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"jnD" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"jnT" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"jnX" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/command/cic)
+"jor" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "43"
+ },
+/area/almayer/hallways/hangar)
+"jox" = (
+/obj/structure/machinery/brig_cell/cell_3{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"joG" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/sign/poster{
+ desc = "Eat an EAT bar! ...Aren't they called MEAT bars?";
+ icon_state = "poster7";
+ name = "EAT - poster";
+ pixel_y = 30
+ },
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"joT" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"jpp" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ name = "\improper Medical Bay";
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"jpt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"jpJ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"jpN" = (
+/obj/structure/surface/rack,
+/obj/item/storage/box/cups{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/obj/item/storage/box/cups,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"jpQ" = (
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"jqP" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES Interior";
+ name = "\improper ARES Inner Chamber Shutters";
+ plane = -7
+ },
+/obj/effect/step_trigger/ares_alert/core,
+/obj/structure/machinery/door/poddoor/almayer/blended/white/open{
+ closed_layer = 3.2;
+ id = "ARES Emergency";
+ layer = 3.2;
+ name = "ARES Emergency Lockdown";
+ needs_power = 0;
+ open_layer = 1.9;
+ plane = -7
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"jre" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/clothing/accessory/storage/webbing,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"jrm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/bed/chair/comfy,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"jrM" = (
+/obj/structure/machinery/camera/autoname/almayer/containment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"jss" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/captain_mess)
+"jsx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"jsP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"jtj" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"jtJ" = (
+/obj/structure/machinery/door_control{
+ id = "laddernorthwest";
+ name = "North West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"jup" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"juD" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"juN" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen{
+ pixel_y = 7
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"juX" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"jva" = (
+/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/almayer/medical/lower_medical_medbay)
+"jvc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"jvp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ pixel_y = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"jvB" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer/no_build{
+ dir = 4
+ },
+/area/almayer/command/airoom)
+"jvI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"jvJ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"jvX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/command/cic)
+"jvY" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/command/telecomms)
+"jwD" = (
+/obj/structure/prop/almayer/computers/sensor_computer2,
+/obj/structure/machinery/door_control{
+ id = "Secretroom";
+ indestructible = 1;
+ layer = 2.5;
+ name = "Shutters";
+ use_power = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"jwK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"jxi" = (
+/obj/structure/machinery/sleep_console,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"jxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"jxB" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/bridgebunks)
+"jxC" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 7;
+ pixel_y = 29
+ },
+/obj/structure/phone_base/rotary{
+ name = "Reporter Telephone";
+ phone_category = "Almayer";
+ phone_id = "Reporter";
+ pixel_x = -17;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"jxK" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"jyi" = (
+/obj/structure/machinery/power/port_gen/pacman,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"jyE" = (
+/obj/structure/machinery/light,
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"jyR" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
+ req_one_access_txt = "7;23;27"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"jzD" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ icon_state = "almayer_pdoor";
+ id = "s_engi"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/notunnel)
+"jzZ" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"jAi" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/hallways/vehiclehangar)
+"jAq" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "51"
+ },
+/area/almayer/hallways/hangar)
+"jAz" = (
+/obj/structure/platform,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 6;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"jAB" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"jAG" = (
+/obj/structure/surface/rack,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/masks,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"jAJ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"jBy" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"jBB" = (
+/obj/structure/surface/rack,
+/obj/item/circuitboard/firealarm,
+/obj/item/circuitboard,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"jBO" = (
+/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/almayer/medical/containment/cell)
+"jBX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"jCa" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"jCK" = (
+/obj/effect/decal/medical_decals{
+ icon_state = "triagedecalbottomleft";
+ pixel_x = 20
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"jDV" = (
+/obj/effect/projector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES StairsUpper";
+ name = "ARES Core Access";
+ pixel_x = 24;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"jEs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"jFe" = (
+/obj/structure/prop/holidays/string_lights{
+ pixel_y = 27
+ },
+/obj/item/frame/rack,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"jFf" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"jFg" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"jFh" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"jFE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"jFR" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"jFX" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"jGn" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"jGI" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"jGN" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"jGR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"jHe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"jHh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"jHC" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"jHG" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"jHL" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"jHQ" = (
+/obj/structure/machinery/crema_switch{
+ pixel_x = -24;
+ req_access_txt = "25"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"jIV" = (
+/obj/structure/surface/rack,
+/obj/item/book/manual/marine_law{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"jJe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"jJk" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"jJq" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"jJs" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"jKh" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"jKn" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_missiles)
+"jKz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/largecrate/random/case/double,
+/obj/item/cell/crap{
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"jKA" = (
+/obj/structure/sign/safety/cryo{
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"jKF" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "CIC_Conference";
+ name = "\improper CIC Conference Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/command/cichallway)
+"jKI" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/port_atmos)
+"jKJ" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_x = 30
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = 8
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = -8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"jKK" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"jLj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"jLs" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"jLv" = (
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"jLK" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/port_hallway)
+"jMb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"jMi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck{
+ pixel_y = 14
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"jMm" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/obj/item/clothing/mask/rebreather/scarf,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"jMr" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/donut_box{
+ pixel_y = 4
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"jMt" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"jMG" = (
+/obj/structure/largecrate/random/case/small,
+/obj/structure/largecrate/random/mini/wooden{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"jMK" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"jMQ" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"jMR" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective{
+ dir = 9;
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"jNc" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment/cell)
+"jNq" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"jNt" = (
+/obj/structure/surface/rack,
+/obj/item/stack/folding_barricade/three,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"jOi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"jOk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/line_nexter_control{
+ id = "line2";
+ pixel_x = -4;
+ pixel_y = 10;
+ req_one_access_txt = "1;21"
+ },
+/obj/structure/machinery/door_control{
+ id = "ROlobby2";
+ name = "RO Line 2 Shutters";
+ pixel_x = 5;
+ pixel_y = 10;
+ req_one_access_txt = "1;21"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"jOo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/gym)
+"jOu" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/machinery/faxmachine/uscm/brig,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"jOx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"jOG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"jPf" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"jPq" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"jQt" = (
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell)
+"jRz" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "tele_ground1";
+ teleport_x = 180;
+ teleport_x_offset = 200;
+ teleport_y = 50;
+ teleport_y_offset = 80;
+ teleport_z = 1;
+ teleport_z_offset = 1
+ },
+/turf/closed/wall/almayer/outer,
+/area/space)
+"jRC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"jRK" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"jRS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"jSo" = (
+/obj/item/tool/warning_cone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"jSp" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"jSw" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"jSy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"jSU" = (
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"jSY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"jTi" = (
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"jTj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"jTu" = (
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"jTI" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"jUb" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/toy/deck{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = 7;
+ pixel_y = 14
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"jUn" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door/window/southleft{
+ desc = "A window, that is also a door. A windoor if you will. This one is stronger.";
+ health = 500;
+ name = "Reinforced Glass door";
+ req_one_access_txt = "2;35"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"jUo" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"jUs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"jUx" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock SL-2";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"jUG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"jUL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"jUM" = (
+/obj/structure/machinery/camera/autoname/almayer/containment{
+ dir = 8
+ },
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"jUW" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"jUY" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"jVa" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"jVr" = (
+/obj/structure/machinery/cm_vending/clothing/marine/alpha{
+ density = 0;
+ layer = 4.1;
+ pixel_y = -29
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"jVt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer/research/containment/corner3,
+/area/almayer/medical/containment/cell)
+"jVE" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/command/computerlab)
+"jWh" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"jWr" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"jWt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"jWu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"jWH" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"jWU" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"jXf" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ id_tag = "or03";
+ name = "Lobby"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"jXk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"jXW" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"jXY" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"jYd" = (
+/obj/structure/machinery/gear{
+ id = "vehicle_elevator_gears"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/vehiclehangar)
+"jYR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"jZd" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_four)
+"jZm" = (
+/obj/structure/machinery/brig_cell/cell_4{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"jZs" = (
+/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/almayer/medical/containment/cell)
+"jZu" = (
+/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/almayer/command/cichallway)
+"jZv" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"jZO" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"jZU" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/medical/containment/cell/cl)
+"jZY" = (
+/obj/structure/closet/l3closet/virology,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"kaj" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"kam" = (
+/obj/item/tool/screwdriver{
+ layer = 2.9;
+ pixel_x = -21;
+ pixel_y = -14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"kan" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/lower_medical_medbay)
+"kat" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/lower_hull/l_m_s)
+"kaA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"kaB" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"kaF" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"kaI" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"kaN" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"kaS" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera{
+ pixel_x = -9;
+ pixel_y = 16
+ },
+/obj/item/storage/photo_album{
+ pixel_x = -6;
+ pixel_y = -17
+ },
+/obj/item/clothing/mask/cigarette/pipe,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"kbc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{
+ dir = 8
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"kbx" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"kbH" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"kbJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"kbV" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"kcl" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/squads/bravo)
+"kcp" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/auxiliary_officer_office)
+"kcA" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kcH" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/synthcloset)
+"kcN" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/living/commandbunks)
+"kdi" = (
+/obj/item/device/flashlight/pen{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"kdt" = (
+/obj/structure/machinery/door_control{
+ id = "OuterShutter";
+ name = "Outer Shutter";
+ pixel_x = 5;
+ pixel_y = -2;
+ req_one_access_txt = "1;3"
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door_control{
+ id = "OfficeSafeRoom";
+ name = "Office Safe Room";
+ pixel_x = 5;
+ pixel_y = 5;
+ req_one_access_txt = "1;3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"kdB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"kep" = (
+/obj/structure/machinery/camera/autoname/almayer/dropship_two{
+ dir = 4;
+ pixel_x = -16
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = 8
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = -8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"keG" = (
+/obj/effect/attach_point/weapon/dropship2/left_fore,
+/obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"keR" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/starboard)
+"kff" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"kfv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/nanopaste{
+ pixel_x = -3;
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"kfE" = (
+/obj/structure/bed/sofa/south/grey/right,
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"kfN" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"kfP" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"kfU" = (
+/turf/open/floor/plating,
+/area/almayer/powered/agent)
+"kfX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"kge" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/processing)
+"kgr" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"kgs" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "researchlockdownext_se_2";
+ name = "\improper Research Window Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/plating,
+/area/almayer/medical/medical_science)
+"khd" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"khD" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"khE" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"khJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"khS" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"kif" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"kij" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"kio" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/closet,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"kiF" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"kiM" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"kiT" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"kiU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"kiV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
+ pixel_x = 11
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"kjN" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/surgery)
+"kjV" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/yellow{
+ layer = 3.2
+ },
+/obj/item/bedsheet/yellow{
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/obj/item/toy/plushie_cade,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"kkt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/marine_law,
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"kkx" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"kkE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"kkO" = (
+/obj/structure/stairs/perspective{
+ dir = 8;
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"klH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"kmd" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"kmp" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"kmE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"kmK" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/item/tool/mop,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"kmL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/obj/item/storage/box/drinkingglasses{
+ pixel_x = -7
+ },
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = -10;
+ pixel_y = 14
+ },
+/obj/item/storage/xeno_tag_case/full{
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"kmM" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"kng" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"knH" = (
+/obj/structure/machinery/vending/coffee,
+/obj/structure/sign/safety/coffee{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"knK" = (
+/obj/structure/kitchenspike,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"koc" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"koz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/lightreplacer{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"koB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"koC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/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 = "plate"
+ },
+/area/almayer/squads/bravo)
+"koT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"kpc" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"kpl" = (
+/obj/structure/machinery/door_control{
+ id = "cl_shutters";
+ name = "Privacy Shutters";
+ pixel_y = -20;
+ req_access_txt = "200"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/aft_hallway)
+"kpo" = (
+/obj/structure/machinery/floodlight/landing{
+ name = "bolted floodlight"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"kpQ" = (
+/obj/structure/machinery/door_control{
+ id = "engidorm";
+ pixel_x = 25;
+ pixel_y = 2
+ },
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kpX" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"kpY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/hardhat{
+ pixel_y = 15
+ },
+/obj/item/clothing/head/hardhat/dblue{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/item/clothing/head/hardhat{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/hardhat/orange{
+ pixel_x = 7;
+ pixel_y = -5
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"kqc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/belt/utility/full,
+/obj/item/clothing/glasses/welding,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"kqf" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"kqt" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/bridgebunks)
+"kqv" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"kqy" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ layer = 3.1;
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/item/book/manual/marine_law{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/tool/pen,
+/obj/item/tool/pen{
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"kqK" = (
+/obj/structure/machinery/conveyor{
+ dir = 8;
+ id = "gym_1";
+ name = "treadmill"
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"kqN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"kro" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"krp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/cups,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"krN" = (
+/obj/structure/machinery/conveyor{
+ id = "req_belt"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"krS" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"krZ" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/clothing/accessory/storage/webbing,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"ksp" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"ksA" = (
+/obj/structure/closet/secure_closet/freezer/fridge/groceries,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"ksN" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 6
+ },
+/area/almayer/living/briefing)
+"ksP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/bronze{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/ash,
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = 4;
+ pixel_y = 13
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -7;
+ pixel_y = 14
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -13;
+ pixel_y = 8
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -6;
+ pixel_y = 9
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"kta" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"ktn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"ktB" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"ktO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"ktP" = (
+/obj/structure/curtain/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"ktX" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/living/grunt_rnr)
+"kuk" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"kuu" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"kuw" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/living/briefing)
+"kvh" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/station_alert{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"kvz" = (
+/obj/structure/machinery/power/terminal{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/engine_core)
+"kvU" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"kwd" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"kwo" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"kwq" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"kws" = (
+/obj/structure/machinery/line_nexter/med{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"kwz" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"kwQ" = (
+/obj/item/tool/warning_cone{
+ pixel_y = 16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"kwS" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"kxd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"kxo" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"kxL" = (
+/obj/structure/closet/coffin/woodencrate,
+/obj/structure/largecrate/random/mini/wooden{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/uscm_mre,
+/obj/item/storage/box/uscm_mre,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"kxM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"kyI" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/chief_mp_office)
+"kyN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"kyP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"kyX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"kyY" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"kyZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_umbilical)
+"kzb" = (
+/obj/structure/machinery/vending/walkman,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"kzk" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/command/computerlab)
+"kzy" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"kzK" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/item/bedsheet/blue{
+ layer = 3.2
+ },
+/obj/item/bedsheet/blue{
+ pixel_y = 13
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"kzP" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/port_hallway)
+"kzT" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"kAa" = (
+/obj/structure/shuttle/part/dropship2/nose_front_left,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"kAh" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"kAm" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"kAr" = (
+/obj/structure/shuttle/part/dropship2/left_outer_wing_connector,
+/turf/open/space/basic,
+/area/almayer/hallways/hangar)
+"kAs" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"kAU" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"kBo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"kBy" = (
+/obj/structure/machinery/ares/processor,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"kBC" = (
+/obj/structure/shuttle/part/dropship2/left_inner_wing_connector,
+/turf/open/space/basic,
+/area/almayer/hallways/hangar)
+"kBK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"kBP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"kBY" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/tankerbunks)
+"kCi" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/port_missiles)
+"kCj" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"kCm" = (
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"kCE" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/containment)
+"kCS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
+"kCT" = (
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"kDb" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"kDi" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"kDj" = (
+/obj/structure/bed,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"kDk" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/containment)
+"kDA" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"kDR" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"kEb" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"kEp" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/morgue)
+"kFe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"kFk" = (
+/obj/structure/closet/secure_closet/commander,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"kFq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/engineering_construction,
+/obj/item/folder/black_random,
+/obj/structure/sign/safety/high_rad{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"kFs" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"kFv" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"kFO" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "crate_room2";
+ name = "\improper Storage Shutters"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"kFY" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 7
+ },
+/turf/closed/wall/almayer,
+/area/almayer/living/cryo_cells)
+"kGt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"kGF" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"kGI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"kGL" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"kGQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/research/containment/corner_var1{
+ icon_state = "containment_corner_variant_2"
+ },
+/area/almayer/medical/containment/cell)
+"kGX" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"kHa" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/surgery)
+"kHc" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "10"
+ },
+/area/almayer/hallways/hangar)
+"kHd" = (
+/obj/structure/machinery/computer/arcade,
+/obj/item/prop/helmetgarb/spacejam_tickets{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"kHj" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"kHK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/execution)
+"kHS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kHT" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"kHY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"kIm" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"kIP" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"kJi" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"kJC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"kJG" = (
+/obj/item/toy/deck{
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 32
+ },
+/obj/structure/surface/table/woodentable/poor,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"kJK" = (
+/obj/structure/bed/chair/comfy/orange,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"kJL" = (
+/obj/structure/machinery/constructable_frame{
+ icon_state = "box_2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"kJV" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"kKb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"kKk" = (
+/obj/structure/disposalpipe/segment,
+/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/almayer/living/grunt_rnr)
+"kKv" = (
+/obj/effect/projector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"kKG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"kKL" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"kKR" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"kKX" = (
+/obj/structure/machinery/conveyor{
+ id = "lower_garbage"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"kLc" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kLk" = (
+/obj/structure/machinery/cm_vending/clothing/tl/bravo{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"kLp" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"kLP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/squads/req)
+"kMq" = (
+/obj/structure/sign/poster{
+ desc = "It says DRUG.";
+ icon_state = "poster2";
+ pixel_y = 30
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"kMt" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "75"
+ },
+/area/almayer/hallways/hangar)
+"kMH" = (
+/obj/structure/machinery/door/window/brigdoor/southright{
+ id = "Cell 1";
+ name = "Cell 1"
+ },
+/obj/structure/sign/safety/one{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"kMK" = (
+/obj/structure/prop/invuln{
+ desc = "An inflated membrane. This one is puncture proof. Wow!";
+ icon = 'icons/obj/items/inflatable.dmi';
+ icon_state = "wall";
+ name = "umbilical wall"
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer_hull{
+ dir = 8;
+ icon_state = "outerhull_dir"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kNi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"kNk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/engineering/upper_engineering/starboard)
+"kNl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"kNx" = (
+/obj/structure/sign/safety/ref_bio_storage{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/biohazard{
+ pixel_x = -17;
+ pixel_y = -7
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/chemistry,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"kNC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"kNO" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_x = -9;
+ pixel_y = 4
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"kNY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room)
+"kOf" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"kOi" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"kOk" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"kOv" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/shipboard/port_missiles)
+"kOA" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "96"
+ },
+/area/almayer/hallways/hangar)
+"kOB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clipboard{
+ pixel_x = -6
+ },
+/obj/item/tool/pen/blue{
+ pixel_x = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/pilotbunks)
+"kOG" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"kPo" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"kPx" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/mass_spectrometer,
+/obj/item/device/mass_spectrometer,
+/obj/item/reagent_container/dropper,
+/obj/item/reagent_container/dropper,
+/obj/item/reagent_container/dropper,
+/obj/item/reagent_container/glass/beaker/cryoxadone,
+/obj/item/reagent_container/glass/beaker/cryoxadone,
+/obj/item/reagent_container/glass/beaker/cryoxadone,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/chemistry)
+"kPB" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"kPG" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"kPJ" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"kPR" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/suit_storage{
+ pixel_x = -17
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kPZ" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = -12
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 16
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"kQz" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"kQU" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"kRd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_three)
+"kRu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = -16;
+ pixel_y = 17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"kRP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/prop/magazine/dirty/torn,
+/obj/item/prop/magazine/dirty/torn/alt{
+ pixel_x = 7;
+ pixel_y = 11
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"kSd" = (
+/obj/item/cell/high/empty,
+/obj/item/cell/high/empty,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"kSv" = (
+/obj/item/reagent_container/glass/bucket/janibucket,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"kSy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Mainframe Right";
+ name = "ARES Mainframe Lockdown";
+ pixel_x = -24;
+ pixel_y = 24;
+ req_one_access_txt = "200;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"kSJ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"kSN" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"kTc" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/vehicle_clamp,
+/obj/item/vehicle_clamp,
+/obj/item/vehicle_clamp,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"kTq" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"kTv" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"kTx" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"kTM" = (
+/obj/item/frame/rack{
+ layer = 3.1;
+ pixel_y = 19
+ },
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack{
+ pixel_x = 5
+ },
+/obj/item/tool/weldpack{
+ pixel_x = -2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"kTN" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/ce_room)
+"kTY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"kUt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"kUw" = (
+/obj/structure/surface/rack,
+/obj/item/storage/bag/trash{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/bag/trash{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/storage/bag/trash{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"kUQ" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/structure/machinery/constructable_frame,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"kUV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"kVX" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "OfficeSafeRoom";
+ name = "\improper Office Safe Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"kVZ" = (
+/obj/structure/machinery/door/window/brigdoor/southright{
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/obj/structure/sign/safety/two{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"kWk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/squads/req)
+"kWq" = (
+/obj/structure/sign/safety/synth_storage{
+ pixel_x = 8;
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"kWT" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"kWY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"kXa" = (
+/obj/structure/machinery/cm_vending/clothing/marine/bravo{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"kXf" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"kXj" = (
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"kXu" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"kXw" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"kXJ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"kXK" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"kXN" = (
+/obj/item/clothing/glasses/sunglasses/aviator{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"kYa" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "OuterShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"kYv" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"kYP" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"kYU" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"kYV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"kZA" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_umbilical)
+"kZN" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"kZV" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"lah" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "emerald"
+ },
+/area/almayer/living/gym)
+"laj" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"lau" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"laO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"laQ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{
+ name = "\improper Engineering Reception"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"laU" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "Firing_Range_1";
+ name = "range shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"laV" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/command/cic)
+"lbb" = (
+/obj/structure/surface/table/almayer,
+/obj/item/organ/heart/prosthetic{
+ pixel_x = -4
+ },
+/obj/item/circuitboard{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"lbf" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"lbB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lbX" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"lcg" = (
+/obj/structure/machinery/ares/substrate,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"lcy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/bridgebunks)
+"lcV" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"lcW" = (
+/obj/item/storage/donut_box{
+ pixel_y = 8
+ },
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/chief_mp_office)
+"ldj" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/platform,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"ldl" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ldt" = (
+/obj/structure/machinery/conveyor{
+ dir = 8;
+ id = "gym_1";
+ name = "treadmill"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"ldu" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ldC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"ldD" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/general_equipment)
+"ldN" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"lea" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/hydroponics)
+"lef" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"leg" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/hangar)
+"leh" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"let" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"ley" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"leY" = (
+/obj/structure/bed/sofa/south/white/left,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"lfH" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"lfQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"lfW" = (
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 14;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"lgy" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "Firing_Range_2";
+ name = "range shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/cryo_cells)
+"lgK" = (
+/obj/structure/machinery/cm_vending/clothing/senior_officer{
+ density = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/numbertwobunks)
+"lgX" = (
+/obj/structure/sign/safety/storage{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"lgY" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"lht" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"lhu" = (
+/obj/structure/coatrack,
+/obj/structure/sign/poster/clf{
+ pixel_x = -28
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 30
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"lhv" = (
+/obj/structure/machinery/door_control{
+ id = "CMO Shutters";
+ name = "Office Shutters";
+ pixel_y = -20;
+ req_access_txt = "5"
+ },
+/obj/structure/machinery/computer/crew,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"lhB" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "kitchen";
+ name = "\improper Kitchen Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/grunt_rnr)
+"lhJ" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lhL" = (
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"lhX" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 16
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"lid" = (
+/obj/structure/machinery/chem_master{
+ vial_maker = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"lin" = (
+/obj/effect/projector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"liJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"liY" = (
+/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/almayer/medical/containment/cell)
+"liZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck,
+/obj/item/toy/dice/d20,
+/obj/item/toy/deck/uno,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"ljf" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"ljG" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_container/food/condiment/coldsauce,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"ljL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/phone_base{
+ name = "CMO Office Telephone";
+ phone_category = "Offices";
+ phone_id = "CMO Office";
+ pixel_y = 29
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = 23;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"ljO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"lkd" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "kitchen2";
+ name = "\improper Kitchen Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/living/grunt_rnr)
+"lkf" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light,
+/obj/structure/machinery/door_control{
+ id = "Hangar Lockdown";
+ name = "Hangar Lockdown";
+ pixel_y = -2;
+ req_one_access_txt = "3;22;19"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
+"lkM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"lkW" = (
+/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/almayer/medical/lower_medical_medbay)
+"llM" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"llO" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"lmk" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"lml" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"lmn" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "92"
+ },
+/area/almayer/hallways/hangar)
+"lmw" = (
+/obj/structure/closet/l3closet/general,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"lmz" = (
+/turf/closed/wall/almayer/white/hull,
+/area/space)
+"lmK" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/command/securestorage)
+"lne" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lnm" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/living/briefing)
+"lnt" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"lnJ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"lnP" = (
+/obj/structure/machinery/vending/cola,
+/obj/structure/window/reinforced,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"lnS" = (
+/obj/structure/sign/safety/rewire{
+ pixel_y = 38
+ },
+/obj/structure/sign/safety/fibre_optics{
+ pixel_x = 14;
+ pixel_y = 38
+ },
+/obj/structure/sign/safety/laser{
+ pixel_y = 24
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 14;
+ pixel_y = 24
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Operations Left";
+ name = "ARES Operations Shutter";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"lok" = (
+/obj/structure/machinery/cm_vending/clothing/marine/charlie{
+ density = 0;
+ layer = 4.1;
+ pixel_y = -29
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"lol" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 16;
+ pixel_y = -30
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lou" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"loK" = (
+/obj/structure/closet/crate/medical,
+/obj/item/storage/firstaid/adv,
+/obj/item/tank/emergency_oxygen/double,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"loP" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/laundry)
+"loS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"loV" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2
+ },
+/obj/structure/machinery/scoreboard{
+ id = "basketball";
+ pixel_y = 30
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"loY" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"lpt" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"lpy" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered/agent)
+"lpD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/starboard_hallway)
+"lpS" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"lpX" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"lqF" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"lqI" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"lqJ" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/south{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"lqK" = (
+/obj/effect/decal/cleanable/ash,
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -13;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/hangar)
+"lqN" = (
+/obj/item/device/assembly/mousetrap/armed,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"lra" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ name = "\improper Disposals"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"lrb" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"lre" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"lrq" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/armory)
+"lrs" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"lrF" = (
+/obj/structure/machinery/light,
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"lrT" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"lrV" = (
+/obj/structure/machinery/door/window/brigdoor/southright{
+ id = "Cell 3";
+ name = "Cell 3"
+ },
+/obj/structure/sign/safety/three{
+ pixel_x = 31
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"lrW" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/adv,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"lrX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"lsb" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"lsp" = (
+/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"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"lsD" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
+"lsV" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"ltb" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"lto" = (
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"ltA" = (
+/obj/item/tool/weldingtool,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"ltI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"ltK" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/open/shower{
+ name = "hypersleep curtain"
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_p)
+"ltR" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_x = -30
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = 8
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = -8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"ltU" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"ltX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/main_office)
+"lue" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/yellow,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"luk" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/item/clothing/head/helmet/marine/tech/tanker,
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"lut" = (
+/obj/structure/machinery/computer/crew,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"luu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"luw" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ dir = 2;
+ name = "Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
+"luz" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"luC" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "perma_lockdown";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
+"luH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/atm{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"luS" = (
+/obj/structure/surface/rack,
+/obj/item/stack/sheet/cardboard{
+ amount = 50;
+ pixel_x = -3
+ },
+/obj/item/stack/sheet/cardboard{
+ amount = 50;
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"luY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"luZ" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ layer = 2.2;
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"lvA" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"lvZ" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ id = "Perma 1L";
+ name = "\improper cell shutter"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/perma)
+"lwi" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"lwm" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"lwC" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"lwJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/squads/charlie)
+"lxo" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"lxT" = (
+/obj/structure/machinery/constructable_frame,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"lxW" = (
+/obj/structure/sign/prop2{
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"lyi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/pistachios,
+/obj/item/tool/lighter/random{
+ pixel_x = 13
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"lyk" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"lyw" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"lyE" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"lyQ" = (
+/obj/item/device/radio/intercom/normandy{
+ layer = 3.5;
+ pixel_x = 21;
+ pixel_y = 43
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"lyX" = (
+/obj/structure/machinery/cm_vending/clothing/senior_officer{
+ req_access = null;
+ req_access_txt = 37;
+ req_one_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"lza" = (
+/obj/structure/bed/sofa/vert/grey,
+/obj/structure/bed/sofa/vert/grey/top{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"lzj" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"lzn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"lzq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"lzt" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
+"lzx" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"lzA" = (
+/obj/structure/machinery/sleep_console{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"lzH" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"lzW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -15
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"lAl" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"lAu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lAy" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"lAA" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"lAO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"lAP" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"lAQ" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"lBg" = (
+/obj/structure/bedsheetbin,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"lBi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"lBv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"lBz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"lBF" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"lBR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"lBY" = (
+/obj/structure/closet{
+ name = "backpack storage"
+ },
+/obj/item/storage/backpack/marine/grenadepack,
+/obj/item/storage/backpack/marine/grenadepack,
+/obj/item/storage/backpack/marine/mortarpack,
+/obj/item/storage/backpack/marine/mortarpack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"lCt" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"lCz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"lCM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"lCS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"lDg" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"lDJ" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"lDL" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"lDN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"lDV" = (
+/obj/structure/sign/safety/cryo{
+ pixel_y = 26
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"lEf" = (
+/turf/closed/wall/almayer/research/containment/wall/corner{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell/cl)
+"lEj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering)
+"lEv" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"lEF" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"lEO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"lEW" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"lFb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"lFe" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"lFh" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"lFm" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"lFn" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/morgue)
+"lFs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"lFt" = (
+/obj/structure/machinery/portable_atmospherics/powered/pump,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/starboard_atmos)
+"lFA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/pouch/tools/tank,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lFF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"lFK" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"lGh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"lGr" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"lGu" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"lGG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Starboard Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"lGL" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = -32
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"lHc" = (
+/obj/structure/sign/safety/maint{
+ pixel_y = 26
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"lHu" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/living/grunt_rnr)
+"lHG" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ req_one_access = null;
+ req_one_access_txt = "30;19"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/grunt_rnr)
+"lIa" = (
+/obj/item/robot_parts/arm/l_arm,
+/obj/item/robot_parts/leg/l_leg,
+/obj/item/robot_parts/arm/r_arm,
+/obj/item/robot_parts/leg/r_leg,
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/cobweb{
+ dir = 8
+ },
+/obj/item/book/manual/robotics_cyborgs{
+ pixel_y = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/synthcloset)
+"lIh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"lIp" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"lIw" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"lII" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/port_atmos)
+"lIU" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lIV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"lJa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engineering_workshop)
+"lJg" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"lJu" = (
+/obj/structure/barricade/metal{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"lJv" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "researchlockdownext";
+ name = "\improper Research Window Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/plating,
+/area/almayer/medical/medical_science)
+"lJG" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/sleep_console,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"lJK" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"lJO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"lJY" = (
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"lKa" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/light/small,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"lKb" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"lKk" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"lLC" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"lLS" = (
+/obj/structure/sign/safety/galley{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"lLV" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"lMc" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"lMp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"lMv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"lMw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"lMA" = (
+/obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"lMM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"lMY" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"lNl" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"lNs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/machinery/door_control{
+ id = "cmp_armory";
+ name = "Armory Lockdown";
+ pixel_x = 24;
+ pixel_y = -6;
+ req_access_txt = "4"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"lNw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"lNy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"lNF" = (
+/obj/structure/closet/secure_closet{
+ name = "\improper Lethal Injection Locker"
+ },
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/obj/item/reagent_container/ld50_syringe/choral,
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"lOl" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/command/corporateliason)
+"lOr" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "crate_room";
+ name = "\improper Storage Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"lOH" = (
+/obj/structure/sink{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_two)
+"lON" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "researchlockdownext_door";
+ name = "\improper Research Doorway Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"lPz" = (
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
+"lPB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/lightreplacer,
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lPC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"lPO" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"lQj" = (
+/obj/structure/machinery/door_control{
+ id = "InnerShutter";
+ name = "Inner Shutter";
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/toy/deck{
+ pixel_x = -9
+ },
+/obj/item/ashtray/plastic,
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/sign/safety/intercom{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"lQq" = (
+/obj/structure/bed,
+/obj/item/bedsheet/hop,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"lQu" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"lQz" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"lQG" = (
+/obj/structure/machinery/computer/tech_control,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"lQO" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_three)
+"lQQ" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"lRs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/reagent_container/food/condiment/hotsauce/cholula{
+ pixel_y = 20
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"lRE" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"lRP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/helmetgarb/chaplain_patch,
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"lRU" = (
+/obj/structure/sign/safety/conference_room{
+ pixel_x = 14;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"lRX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"lRZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = -16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"lSD" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"lTt" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"lTE" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/bible{
+ desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'.";
+ name = "Holy Bible"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"lTK" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"lVl" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"lVo" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"lVS" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "south_central_checkpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"lWh" = (
+/obj/structure/machinery/pipedispenser/orderable,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"lWr" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"lXg" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger,
+/obj/structure/machinery/computer/working_joe{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"lXF" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 36
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"lXO" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/item/trash/popcorn{
+ layer = 3.1;
+ pixel_x = -3;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"lYi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"lYk" = (
+/obj/item/trash/c_tube{
+ pixel_x = 16;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"lYu" = (
+/obj/item/tool/wet_sign,
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"lYA" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull/u_m_s)
+"lYL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"lYN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"lYZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical/green{
+ pixel_y = 8
+ },
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"lZs" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -6;
+ pixel_y = 28
+ },
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/item/device/flashlight/lamp,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/machinery/firealarm{
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"lZB" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"lZO" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"lZZ" = (
+/obj/structure/machinery/autolathe/medilathe/full,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"maa" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"maq" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 7;
+ pixel_y = -26
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"maw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"maH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base{
+ dir = 4;
+ name = "Starboard Railgun Control Telephone";
+ phone_category = "Command";
+ phone_id = "Starboard Railgun Control";
+ pixel_x = -26
+ },
+/obj/item/device/binoculars,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"maI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"maL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/protein_pack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"maT" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"mbn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"mce" = (
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"mcL" = (
+/obj/structure/machinery/vending/snack,
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"mcV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wirecutters,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"mcW" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/gloves,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"mdo" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"mdJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"mdS" = (
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"mdW" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/item/folder/white,
+/obj/item/folder/white,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"meu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"meJ" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"meN" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "Under Construction Shutters";
+ name = "\improper Construction Site"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"meS" = (
+/obj/structure/sign/safety/water{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"meY" = (
+/turf/closed/wall/almayer{
+ damage_cap = 15000
+ },
+/area/almayer/squads/alpha)
+"mfe" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"mfI" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "AftPortMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/lower_hull/l_a_p)
+"mfM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/megaphone,
+/obj/structure/window/reinforced/ultra,
+/obj/structure/window/reinforced/ultra{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"mfQ" = (
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"mgj" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"mgy" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"mgF" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"mha" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"mhd" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"mhl" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice13";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"mhm" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"mhG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"mhI" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_x = 13;
+ pixel_y = 15
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"miE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"miK" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"miV" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = -17;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"mji" = (
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"mjR" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"mjS" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"mkc" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/obj/structure/closet/crate/trashcart,
+/obj/item/reagent_container/food/drinks/cans/souto,
+/obj/item/reagent_container/food/snacks/margheritaslice{
+ desc = "A slice of classic pizza ruined by the corps.";
+ name = "dirty margherita slice";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ desc = "A handful of rounds to reload on the go.";
+ icon = 'icons/obj/items/weapons/guns/handful.dmi';
+ icon_state = "bullet_2";
+ name = "handful of pistol bullets (9mm)";
+ pixel_x = -8
+ },
+/obj/item/bananapeel{
+ desc = "Ew.";
+ gender = "plural";
+ icon = 'icons/obj/items/shards.dmi';
+ icon_state = "shrapnelsmall";
+ name = "\improper finger nails";
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/stack/medical/ointment{
+ layer = 3.5;
+ pixel_x = -7;
+ pixel_y = 13
+ },
+/obj/item/clothing/gloves/latex,
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = 11;
+ pixel_y = 7
+ },
+/obj/item/trash/uscm_mre,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"mkh" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"mkk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"mkx" = (
+/obj/structure/machinery/door_control{
+ id = "cl_shutters 2";
+ name = "Quarters Shutters";
+ pixel_x = -25;
+ req_access_txt = "200"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/command/corporateliason)
+"mkG" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"mkH" = (
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/surface/rack{
+ layer = 2.5
+ },
+/obj/item/storage/fancy/candle_box{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"mlb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"mlm" = (
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/cryo_cells)
+"mlp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Starboard Railguns and Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"mlz" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"mlH" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"mmC" = (
+/obj/structure/closet/secure_closet/engineering_welding{
+ req_one_access_txt = "7;23;27"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"mmG" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/overwatch_console{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = 16
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Alpha Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Alpha Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"mmN" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "researchlockdownext_se_2";
+ name = "\improper Research Window Shutter"
+ },
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/plating,
+/area/almayer/medical/medical_science)
+"mnf" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"mng" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"mni" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wrench{
+ pixel_y = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"mnm" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"mnA" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"mnG" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"mnI" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/living/briefing)
+"mnW" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"moh" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"mor" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/item/tool/warning_cone{
+ pixel_x = -12;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"mov" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"moB" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/cells)
+"moE" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"moI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha_bravo_shared)
+"moM" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"moQ" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"moY" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"mpR" = (
+/obj/structure/machinery/door/airlock/dropship_hatch/two{
+ dir = 8;
+ id = "starboard_door"
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"mqg" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"mqo" = (
+/obj/structure/bed/chair/bolted{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"mqK" = (
+/obj/structure/machinery/cm_vending/gear/spec,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"mqU" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_two)
+"mrc" = (
+/obj/item/reagent_container/glass/bucket,
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"mru" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"mrB" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"mrD" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"mrL" = (
+/obj/structure/surface/rack,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"mrM" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"msg" = (
+/obj/structure/machinery/light,
+/obj/structure/sign/safety/waterhazard{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 14;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"msi" = (
+/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/almayer/medical/containment)
+"msm" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"msP" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"msV" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"msZ" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"mtl" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/execution)
+"mto" = (
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"mtr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"mtD" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 16;
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"mtE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/coffee{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"mtM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"mtN" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"mtX" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/rifle/m41aMK1/ap,
+/obj/item/ammo_magazine/rifle/m41aMK1/ap,
+/obj/item/weapon/gun/rifle/m41aMK1/ap,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"mub" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"muq" = (
+/obj/structure/bed/sofa/vert/grey/bot,
+/obj/structure/bed/sofa/vert/grey{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"mux" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"mvl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"mvI" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/barricade/handrail/medical{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"mwA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"mwL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/marine_law,
+/turf/open/floor/wood/ship,
+/area/almayer/living/chapel)
+"mwM" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"mwQ" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"mwR" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/stair_clone/upper)
+"mxL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"myn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/power/apc,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"myo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/soft/purple,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"myC" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"myJ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"myT" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"mzb" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"mzg" = (
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"mzo" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_f_p)
+"mzq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/hydroponics)
+"mzz" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"mzF" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"mzO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/engine_core)
+"mzR" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"mzV" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"mAp" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"mAr" = (
+/obj/structure/closet/secure_closet/guncabinet/riot_control,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"mAT" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ name = "\improper Armory"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/armory)
+"mAV" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"mBb" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"mBc" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"mBe" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/pilotbunks)
+"mBk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"mBp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ access_modified = 1;
+ name = "\improper Astronavigational Deck";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
+"mBA" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 11
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"mBJ" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"mCo" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"mCF" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/item/clipboard{
+ base_pixel_x = 20;
+ pixel_x = 5
+ },
+/obj/item/paper{
+ pixel_x = 5
+ },
+/obj/item/tool/pen{
+ pixel_x = 5
+ },
+/obj/structure/surface/table/reinforced/black,
+/obj/structure/phone_base/rotary{
+ name = "CIC Reception Telephone";
+ phone_category = "Command";
+ phone_id = "CIC Reception";
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"mCL" = (
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"mDj" = (
+/obj/structure/machinery/photocopier,
+/obj/item/paper{
+ color = "grey";
+ info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT";
+ name = "photocopied image";
+ pixel_y = 5
+ },
+/obj/structure/sign/safety/rad_shield{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"mDJ" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/starboard)
+"mDT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"mDW" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/living/briefing)
+"mEb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door_control{
+ id = "laddersoutheast";
+ name = "South East Ladders Shutters";
+ pixel_y = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"mEE" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective{
+ dir = 10;
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"mFq" = (
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "researchlockdownext_door";
+ name = "Door Shutters";
+ pixel_y = 29;
+ req_access_txt = "28"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"mFN" = (
+/obj/effect/step_trigger/ares_alert/mainframe,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES Mainframe Right";
+ name = "\improper ARES Mainframe Shutters";
+ plane = -7
+ },
+/obj/structure/machinery/door/poddoor/almayer/blended/white/open{
+ closed_layer = 3.2;
+ id = "ARES Emergency";
+ layer = 3.2;
+ name = "ARES Emergency Lockdown";
+ needs_power = 0;
+ open_layer = 1.9;
+ plane = -7
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"mFO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"mGe" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"mGn" = (
+/obj/structure/machinery/cm_vending/clothing/military_police_warden,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"mGu" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"mGL" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"mGP" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "82"
+ },
+/area/almayer/hallways/hangar)
+"mHm" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/manualopenclose{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"mHo" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"mHx" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"mHD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"mHE" = (
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"mHO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"mHR" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"mIy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"mIz" = (
+/obj/structure/largecrate/random/secure,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/obj/item/prop/magazine/book/bladerunner{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"mIA" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"mIB" = (
+/obj/structure/machinery/cm_vending/sorted/medical/marinemed,
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"mIW" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"mJa" = (
+/obj/structure/closet/crate/trashcart,
+/obj/item/trash/boonie,
+/obj/item/trash/chunk/hunk,
+/obj/item/trash/crushed_cup,
+/obj/item/trash/uscm_mre,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"mJe" = (
+/obj/structure/sign/safety/conference_room{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/north{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"mJi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"mJj" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/squads/alpha)
+"mJu" = (
+/turf/open/floor/almayer/uscm/directional,
+/area/almayer/command/cic)
+"mJx" = (
+/obj/structure/prop/server_equipment/broken,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"mJL" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"mJP" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"mKb" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"mKf" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"mKh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/cryo)
+"mKq" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/bridgebunks)
+"mKw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"mKx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"mKJ" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/item/bedsheet/purple{
+ layer = 3.2
+ },
+/obj/item/bedsheet/purple{
+ pixel_y = 13
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"mKX" = (
+/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{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"mKY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"mLb" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/item/toy/deck/uno{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/toy/deck{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"mLu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_umbilical)
+"mLz" = (
+/obj/structure/machinery/door_control{
+ id = "pobunk1";
+ name = "PO1 Privacy Shutters";
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"mLE" = (
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"mLF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_y = 7
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/alpha)
+"mLI" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/perma)
+"mLJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"mLR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"mLU" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"mMp" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "73"
+ },
+/area/almayer/hallways/hangar)
+"mMV" = (
+/obj/structure/pipes/vents/scrubber,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"mNf" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"mNm" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"mNI" = (
+/obj/structure/machinery/door/window/westleft{
+ dir = 2
+ },
+/obj/structure/machinery/shower,
+/obj/item/tool/soap,
+/turf/open/floor/almayer{
+ icon_state = "sterile"
+ },
+/area/almayer/medical/upper_medical)
+"mNR" = (
+/obj/structure/surface/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/tool/hand_labeler,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"mNW" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/item/storage/firstaid/rad,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"mNX" = (
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/space/almayer/lifeboat_dock)
+"mNZ" = (
+/obj/item/trash/uscm_mre,
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"mOb" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"mOg" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"mOi" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/command/airoom)
+"mOr" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/tool/lighter,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"mOL" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"mOU" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"mPf" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 6
+ },
+/area/almayer/command/lifeboat)
+"mPh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Engineering South Hall"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"mPj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"mPn" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"mPX" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"mQc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"mQC" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/port_atmos)
+"mQH" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"mQV" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"mQW" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"mRl" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"mRn" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES Interior";
+ name = "\improper ARES Inner Chamber Shutters";
+ plane = -7
+ },
+/obj/effect/step_trigger/ares_alert/core,
+/obj/structure/machinery/door/poddoor/almayer/blended/white/open{
+ closed_layer = 3.2;
+ id = "ARES Emergency";
+ layer = 3.2;
+ name = "ARES Emergency Lockdown";
+ needs_power = 0;
+ open_layer = 1.9;
+ plane = -7
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -18;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/fibre_optics{
+ pixel_x = -18;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"mRS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"mRW" = (
+/turf/open/floor/almayer/research/containment/corner1,
+/area/almayer/medical/containment/cell/cl)
+"mSi" = (
+/obj/structure/bed/sofa/vert/grey/top{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"mSs" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"mSz" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/crew/alt,
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
+"mSK" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/medical/hydroponics)
+"mSP" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "officers_mess";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "19;30"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"mSU" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"mTb" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"mTd" = (
+/obj/structure/machinery/smartfridge/chemistry{
+ pixel_x = -3;
+ pixel_y = -1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"mTi" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"mTm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"mTn" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/starboard_hallway)
+"mTp" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/machinery/cm_vending/clothing/medical_crew{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/medical/hydroponics)
+"mUa" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"mUn" = (
+/obj/structure/machinery/conveyor_switch{
+ id = "lower_garbage"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"mUq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"mUx" = (
+/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"mUz" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/cameras/almayer/ares{
+ dir = 8;
+ pixel_x = 17
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"mUC" = (
+/obj/structure/machinery/light{
+ dir = 4;
+ invisibility = 101;
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"mUQ" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"mUZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"mVi" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cryo)
+"mVE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "DeployWorkR";
+ name = "Workshop Shutters";
+ pixel_y = 26;
+ req_one_access_txt = "3;22;19;7"
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"mVZ" = (
+/obj/structure/sign/poster{
+ desc = "It says DRUG.";
+ icon_state = "poster2";
+ pixel_x = -27
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"mWe" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"mWs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"mWw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"mWy" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"mWD" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/bridgebunks)
+"mWQ" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/obj/structure/sign/banners/maximumeffort{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"mWV" = (
+/obj/structure/bed/chair/comfy/blue,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"mWW" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 10
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"mXj" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/commandbunks)
+"mXU" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"mYs" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"mYv" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ negdir = 4;
+ posdir = 1
+ },
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"mYw" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"mYY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"mZb" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"mZr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"mZA" = (
+/obj/structure/machinery/door/airlock/almayer/generic/corporate,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "cl_shutters 3";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/corporateliason)
+"mZF" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ icon_state = "almayer_pdoor";
+ id = "s_engi_ext"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/notunnel)
+"mZM" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"naf" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"nar" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/auxiliary_officer_office)
+"nau" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"naB" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/perma)
+"naQ" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"naR" = (
+/obj/structure/machinery/iv_drip,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"naV" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Gym"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/gym)
+"nbb" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/phone_base{
+ dir = 8;
+ name = "Medical Telephone";
+ phone_category = "Almayer";
+ phone_id = "Medical Lower";
+ pixel_x = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"nbm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/phone_base{
+ dir = 8;
+ name = "OT Telephone";
+ phone_category = "Almayer";
+ phone_id = "Ordnance Tech";
+ pixel_x = 14
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"nbB" = (
+/obj/structure/closet/secure_closet/freezer/fridge/full,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"ncp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ncE" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/autodispenser{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"ndx" = (
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"ndJ" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"ndM" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"ndQ" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"ndZ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/flashlight/lamp,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
+"nec" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_access_txt = "200";
+ req_one_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"nel" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engineering_workshop)
+"new" = (
+/obj/item/reagent_container/glass/bucket/janibucket,
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"neE" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"neO" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"neP" = (
+/obj/structure/machinery/door/airlock/hatch/cockpit/two,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"neS" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"nff" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"nfp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"nfI" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"nfS" = (
+/obj/item/reagent_container/food/snacks/wrapped/chunk,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ngf" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"ngl" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"ngs" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ngw" = (
+/obj/structure/surface/rack,
+/obj/item/mortar_shell/frag,
+/obj/item/mortar_shell/frag,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"ngA" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/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_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"ngI" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"ngU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/starboard)
+"nhi" = (
+/obj/structure/bed/chair/comfy,
+/obj/structure/window/reinforced/ultra,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"nho" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"nhx" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/toy/deck{
+ desc = "A simple deck of playing cards. You could play Caravan with these!";
+ pixel_y = 12
+ },
+/obj/item/toy/deck/uno{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/clothing/mask/cigarette{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"nhG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/newspaper{
+ name = "character sheet"
+ },
+/obj/item/device/cassette_tape/heavymetal{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/toy/dice,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "courtyard window";
+ name = "Privacy Shutters";
+ pixel_x = -8;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"nig" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"nik" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_y = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"nim" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ access_modified = 1;
+ dir = 2;
+ name = "\improper Chief Engineer's Office";
+ req_one_access = null;
+ req_one_access_txt = "1;6"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "CE Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/ce_room)
+"nis" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"niK" = (
+/obj/item/device/radio/intercom/normandy{
+ pixel_y = 24
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin7"
+ },
+/area/almayer/hallways/hangar)
+"niL" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/medical_science)
+"niR" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"niY" = (
+/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
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"nja" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"njd" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"njy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"njD" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"njJ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/toy/crayon/blue{
+ pixel_x = -9;
+ pixel_y = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"njL" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/port_hallway)
+"njT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"njX" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "14"
+ },
+/area/almayer/hallways/hangar)
+"nka" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "vehicle_elevator_railing"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/vehiclehangar)
+"nkn" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"nkx" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"nlB" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/briefing)
+"nlH" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cells)
+"nlW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"nmb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"nmh" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"nmx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"nmD" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"nmK" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"nmV" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"nna" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"nnc" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"nne" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "bridge2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"nnr" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 9
+ },
+/obj/item/storage/toolbox/mechanical/green,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"nny" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = -17;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"nnz" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/firingrange{
+ pixel_x = 32;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"nnD" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down4";
+ vector_x = 19;
+ vector_y = -104
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/stair_clone/upper)
+"nnF" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"noj" = (
+/obj/structure/largecrate,
+/obj/structure/prop/server_equipment/laptop{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"noo" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/armory)
+"nos" = (
+/obj/structure/machinery/chem_storage/medbay{
+ dir = 1
+ },
+/obj/structure/machinery/chem_storage/research{
+ dir = 1;
+ layer = 3;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"noV" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"nph" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/starboard_atmos)
+"npt" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/containment)
+"npB" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_x = 26
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"nqx" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"nqD" = (
+/obj/item/ammo_box/magazine/misc/mre,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"nqG" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"nqU" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"nqV" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"nqZ" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = -6
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"nrt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"nrw" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"nrz" = (
+/obj/structure/surface/rack,
+/obj/item/tool/kitchen/rollingpin,
+/obj/item/tool/hatchet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"nrN" = (
+/obj/structure/machinery/sleep_console,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"nrO" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"nsc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"nsu" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Security Checkpoint"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "safe_armory";
+ name = "\improper Hangar Armory Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"nsY" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/port_emb)
+"ntd" = (
+/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 = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"ntj" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/command/computerlab)
+"ntm" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/machinery/door_control{
+ id = "CMP Office Shutters";
+ name = "CMP Office Shutters";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_one_access_txt = "24;31"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"ntr" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/goldappleseed,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"ntt" = (
+/obj/item/stool,
+/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/almayer/hallways/vehiclehangar)
+"ntu" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"ntx" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ id = "Alpha_2";
+ name = "\improper Bathroom"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"ntA" = (
+/obj/structure/machinery/light/small,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"ntI" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"nub" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/living/starboard_garden)
+"nun" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"nuA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha)
+"nuK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/franks{
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"nuY" = (
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"nvi" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "25"
+ },
+/area/almayer/hallways/hangar)
+"nvM" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/chemistry)
+"nvT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"nwb" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"nwi" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/research/containment/corner{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell)
+"nwu" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top."
+ },
+/obj/item/reagent_container/food/snacks/mre_pack/xmas2,
+/obj/item/reagent_container/food/snacks/mre_pack/xmas1,
+/obj/item/reagent_container/food/snacks/mre_pack/xmas3,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"nwv" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/paper{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/tool/lighter/zippo/gold,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"nwx" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"nwz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"nwD" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/command/cic)
+"nwG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"nwL" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"nwU" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"nwW" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"nwY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"nxq" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Warden Office"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 2;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"nxK" = (
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"nyj" = (
+/obj/effect/decal/medical_decals{
+ icon_state = "docdecal2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"nyw" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"nyz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"nyG" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"nyQ" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"nyZ" = (
+/obj/effect/attach_point/weapon/dropship2/right_fore,
+/obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"nza" = (
+/obj/structure/bed/chair/comfy/charlie,
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/item/trash/uscm_mre,
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"nzv" = (
+/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{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"nzA" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"nzI" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"nzO" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"nBa" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "15;16;21";
+ vend_x_offset = 0;
+ vend_y_offset = 0
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"nBb" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"nBc" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"nBo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"nBt" = (
+/obj/effect/attach_point/fuel/dropship2,
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "28"
+ },
+/area/almayer/hallways/hangar)
+"nBu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"nBw" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"nBE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"nBW" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"nCp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"nCT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"nDd" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"nDo" = (
+/obj/structure/closet/l3closet/general,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"nDL" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/surface/rack,
+/obj/item/stack/tile/carpet{
+ amount = 20
+ },
+/obj/item/stack/sheet/wood/large_stack,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"nDM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"nEo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/donut_box{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"nEs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"nEA" = (
+/obj/structure/prop/holidays/string_lights{
+ pixel_y = 27
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/drinkingglasses,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"nEF" = (
+/obj/structure/machinery/conveyor_switch{
+ id = "gym_1";
+ name = "treadmill switch"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"nEG" = (
+/obj/structure/largecrate/random/case,
+/obj/structure/machinery/access_button/airlock_exterior,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"nEH" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/computer/research{
+ dir = 4;
+ pixel_y = 4
+ },
+/obj/item/tool/hand_labeler{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"nEJ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"nFm" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/surgery/scalpel,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"nFr" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"nFs" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"nFI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "kitchen";
+ name = "\improper Kitchen Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/storage/box/drinkingglasses,
+/obj/structure/sign/poster{
+ desc = "Eat an EAT bar! ...Aren't they called MEAT bars?";
+ icon_state = "poster7";
+ name = "EAT - poster";
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"nFK" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"nFV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"nFX" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"nGc" = (
+/obj/structure/machinery/vending/hydroseeds,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"nGh" = (
+/obj/structure/bed/chair{
+ buckling_y = 5;
+ dir = 1;
+ pixel_y = 5
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"nGi" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"nHg" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"nHh" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/computerlab)
+"nHF" = (
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_m_s)
+"nHJ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/living/cryo_cells)
+"nHV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"nIj" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"nIt" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"nID" = (
+/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/almayer/command/cichallway)
+"nIE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_missiles)
+"nIG" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"nIS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/basketball)
+"nIW" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"nJo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"nJs" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"nJu" = (
+/obj/item/newspaper,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"nJy" = (
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"nJH" = (
+/obj/structure/machinery/computer/cameras/almayer{
+ dir = 8;
+ pixel_x = 17
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"nKq" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 16;
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"nLa" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"nLb" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/prop/broken_arcade,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"nLg" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"nLk" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"nLt" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/req)
+"nLI" = (
+/obj/structure/sign/safety/terminal{
+ layer = 2.5;
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/machinery/chem_simulator{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"nLJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"nLK" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"nLZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door_control{
+ id = "laddernortheast";
+ name = "North East Ladders Shutters";
+ pixel_y = -25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"nMc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"nMe" = (
+/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/almayer/medical/containment/cell)
+"nMp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/franks,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"nMu" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"nMz" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 35
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"nMV" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"nNt" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"nNv" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"nNA" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"nNH" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/living/briefing)
+"nNQ" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"nNV" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"nNX" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Evacuation Airlock PU-1";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"nNY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"nOe" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "perma_lockdown";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/perma)
+"nOG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"nPa" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"nPf" = (
+/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"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"nPs" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/synthcloset)
+"nPx" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"nPB" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/hangar)
+"nPE" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/centrifuge{
+ pixel_y = 7
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"nPT" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official.";
+ dir = 4;
+ id = "crate_room4";
+ name = "dilapidated storage shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"nQg" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"nQh" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -6;
+ pixel_y = 28
+ },
+/obj/structure/machinery/firealarm{
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base/rotary{
+ name = "Intelligence Center Telephone";
+ phone_category = "Almayer";
+ phone_id = "Intelligence Center Telephone"
+ },
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
+"nQv" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"nQx" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"nRq" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"nRH" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"nRR" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"nRX" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering)
+"nSG" = (
+/obj/structure/machinery/door_control{
+ id = "tcomms";
+ name = "Telecommunications Entrance";
+ pixel_y = 25
+ },
+/obj/structure/sign/safety/fibre_optics{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/telecomms)
+"nSM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/taperecorder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"nSN" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"nSS" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"nSU" = (
+/obj/structure/machinery/vending/snack{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"nTl" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"nTs" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"nTH" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"nTZ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/living/gym)
+"nUa" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"nUd" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_container/spray/cleaner{
+ layer = 3.2;
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"nUn" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"nUv" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"nUy" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"nVe" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/bridge{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"nVi" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"nVu" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"nVB" = (
+/turf/open/floor/almayer,
+/area/almayer/command/securestorage)
+"nVF" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"nVS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"nVX" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat2-D1";
+ linked_dock = "almayer-lifeboat2";
+ throw_dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"nWc" = (
+/obj/structure/machinery/door/airlock/almayer/generic/glass{
+ name = "\improper Passenger Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"nWN" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"nXm" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ id = "Cell 2";
+ name = "\improper Courtyard Divider"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cells)
+"nXF" = (
+/obj/structure/bed/sofa/south/white/right{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"nXP" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_f_s)
+"nXU" = (
+/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/almayer/squads/req)
+"nYc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"nYd" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"nYh" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"nYv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"nYD" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_four)
+"nYE" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 8
+ },
+/area/almayer/command/lifeboat)
+"nYP" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ id = "Cell 3";
+ name = "\improper Courtyard Divider"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cells)
+"nYS" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/phone_base/rotary{
+ name = "Telephone";
+ phone_category = "Almayer";
+ phone_id = "Auxiliary Support Office Second Line";
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/structure/phone_base/rotary{
+ name = "Telephone";
+ phone_category = "Almayer";
+ phone_id = "Auxiliary Support Office";
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"nZy" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/facepaint/black,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"nZF" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"oap" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"oas" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/rods/plasteel{
+ amount = 36
+ },
+/obj/item/stack/catwalk{
+ amount = 60;
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"oaK" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"oaW" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"obo" = (
+/obj/structure/disposalpipe/up/almayer{
+ dir = 8;
+ id = "almayerlink_med_req"
+ },
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"oby" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/plate{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"obC" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"obE" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"obG" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/card{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"obQ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"ocf" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"ocm" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/machinery/space_heater,
+/obj/item/ashtray/glass{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"ocs" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"ocB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 14;
+ pixel_y = 24
+ },
+/obj/structure/sign/safety/fibre_optics{
+ pixel_x = 14;
+ pixel_y = 38
+ },
+/obj/structure/machinery/computer/working_joe{
+ dir = 8;
+ pixel_x = 17
+ },
+/obj/structure/sign/safety/laser{
+ pixel_y = 24
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_y = 38
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"oda" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/soft/ferret{
+ pixel_x = -7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"odb" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"odl" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"odu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"odB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"odD" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"odN" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "SEA Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/sea_office)
+"odV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"oed" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"oee" = (
+/obj/structure/prop/invuln{
+ desc = "An inflated membrane. This one is puncture proof. Wow!";
+ icon = 'icons/obj/items/inflatable.dmi';
+ icon_state = "wall";
+ name = "umbilical wall"
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer_hull{
+ dir = 8;
+ icon_state = "outerhull_dir"
+ },
+/area/almayer/command/lifeboat)
+"oef" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"oeo" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"oer" = (
+/turf/closed/wall/almayer{
+ damage_cap = 15000
+ },
+/area/almayer/squads/delta)
+"oeB" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"oeL" = (
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"oeM" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"ofs" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"oft" = (
+/obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"ofB" = (
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = 8
+ },
+/obj/structure/bed/chair/vehicle{
+ dir = 1;
+ pixel_x = -8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"ofH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"ofK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ofZ" = (
+/obj/structure/bed/sofa/south/grey,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"ohj" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"ohA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/weapon_room)
+"ohB" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"ohE" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"ohH" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat2-D3";
+ linked_dock = "almayer-lifeboat2";
+ throw_dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"ohJ" = (
+/obj/structure/machinery/computer/arcade,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"ohL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/north2)
+"oih" = (
+/obj/structure/bed{
+ icon_state = "abed"
+ },
+/obj/structure/bed{
+ icon_state = "abed";
+ layer = 3.5;
+ pixel_y = 12
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_y = 4
+ },
+/obj/item/bedsheet/orange{
+ pixel_y = 12
+ },
+/obj/item/bedsheet/orange{
+ layer = 3.2
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"oir" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"oit" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
+"oiL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"oiQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"oiY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/machinery/disposal,
+/obj/structure/sink{
+ pixel_x = 1;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"ojz" = (
+/obj/structure/machinery/door/airlock/dropship_hatch/two{
+ id = "port_door"
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"ojF" = (
+/obj/structure/machinery/cm_vending/clothing/tl/charlie{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"ojR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/machinery/door_control{
+ id = "laddersoutheast";
+ name = "South East Ladders Shutters";
+ pixel_y = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"ojZ" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/medical/lower_medical_medbay)
+"okd" = (
+/obj/structure/platform_decoration,
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"okg" = (
+/obj/structure/sign/safety/reception{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"oks" = (
+/obj/effect/decal/cleanable/cobweb{
+ pixel_x = -9;
+ pixel_y = 19
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"okz" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"okB" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 1
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"okD" = (
+/obj/structure/prop/almayer/name_stencil{
+ icon_state = "almayer6"
+ },
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"okE" = (
+/obj/item/device/radio/intercom/normandy{
+ layer = 3.5;
+ pixel_x = -10
+ },
+/turf/closed/shuttle/dropship2{
+ icon_state = "52"
+ },
+/area/almayer/hallways/hangar)
+"okM" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "\improper Execution Room"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/execution)
+"olk" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Bathroom"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"olv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler{
+ pixel_x = -8;
+ pixel_y = 3
+ },
+/obj/item/storage/box/evidence{
+ pixel_x = 7;
+ pixel_y = 6
+ },
+/obj/item/storage/box/evidence{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"olM" = (
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"olO" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"olU" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"omb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"omo" = (
+/obj/structure/window/framed/almayer/white,
+/turf/open/floor/plating,
+/area/almayer/medical/lockerroom)
+"omt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"omu" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"omy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"omP" = (
+/obj/item/tool/mop,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"omW" = (
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"onN" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/toy/deck{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"onQ" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"onY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/device/flashlight/lamp{
+ pixel_x = -8;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"oog" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/execution)
+"ooh" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"oos" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"oou" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ooR" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "perma_lockdown";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{
+ name = "\improper Perma Cells"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
+"opj" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"opC" = (
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"opD" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/gym)
+"opJ" = (
+/obj/docking_port/stationary/emergency_response/external/port4,
+/turf/open/space/basic,
+/area/space)
+"opN" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"oqu" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"oqv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"oqw" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"oqA" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/command/cic)
+"oqD" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/tool/wet_sign{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"oqS" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"oqZ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/microwave{
+ pixel_y = 5
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = -4;
+ pixel_y = 19
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 4;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"ora" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/bronze{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_x = 9;
+ pixel_y = 15
+ },
+/obj/item/trash/cigbutt{
+ pixel_x = -7;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"orm" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"orv" = (
+/obj/structure/machinery/light/small,
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"orH" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 10
+ },
+/area/almayer/command/lifeboat)
+"osc" = (
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"osx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/suit_storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"osy" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"osz" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"osA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"osE" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"osJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/white{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/paper,
+/obj/item/handcuffs,
+/obj/item/clothing/mask/cigarette/cigar/classic,
+/obj/item/coin/silver{
+ desc = "A small coin, bearing the falling falcons insignia.";
+ name = "falling falcons challenge coin"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/chief_mp_office)
+"osT" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/prop/ice_colony/hula_girl{
+ pixel_x = 10;
+ pixel_y = -4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/pilotbunks)
+"otu" = (
+/turf/closed/wall/almayer/research/containment/wall/connect_w,
+/area/almayer/medical/containment/cell)
+"otX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_x = -17;
+ pixel_y = -7
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"oug" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/computer/squad_changer{
+ dir = 8;
+ layer = 2.99;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"ouo" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"our" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/paper_bin/uscm{
+ pixel_y = 6
+ },
+/obj/item/tool/pen,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"ouB" = (
+/obj/structure/bed/sofa/vert/grey/bot,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"ouQ" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"ouV" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 1;
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ouW" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"ovi" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"ovn" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ovp" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_18";
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"ovu" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "81"
+ },
+/area/almayer/hallways/hangar)
+"ovF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"ovG" = (
+/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/almayer/medical/containment/cell)
+"ovP" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hallways/starboard_umbilical)
+"owg" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"owH" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancenorth";
+ name = "\improper North Hangar Podlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"owW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "19;29"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/sea_office)
+"oxi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/cafeteria_officer)
+"oxn" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"oxp" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"oxu" = (
+/obj/structure/sign/safety/galley{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"oxU" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"oyo" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"oyw" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"oyy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"oyE" = (
+/obj/structure/sign/poster{
+ desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
+ icon_state = "poster12";
+ name = "Beach Babe Pinup";
+ pixel_x = 6;
+ pixel_y = 29;
+ serial_number = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/port_atmos)
+"oyG" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ozi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuelCell,
+/obj/item/fuelCell,
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"ozq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"ozr" = (
+/obj/structure/closet,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/newspaper,
+/obj/item/clothing/gloves/yellow,
+/obj/item/stack/tile/carpet{
+ amount = 20
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ozz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tank/emergency_oxygen/double,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ozN" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat2-D2";
+ linked_dock = "almayer-lifeboat2";
+ throw_dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ozT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/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{
+ dir = 6;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"oAd" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"oAB" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/turf/open/floor/almayer/uscm/directional{
+ dir = 10
+ },
+/area/almayer/living/briefing)
+"oAD" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "18"
+ },
+/area/almayer/hallways/hangar)
+"oAO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"oBq" = (
+/obj/structure/bed,
+/obj/structure/machinery/flasher{
+ id = "Cell 1";
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cells)
+"oBA" = (
+/obj/structure/sign/safety/conference_room{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/south{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"oCf" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"oCi" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"oCL" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"oCX" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cryo)
+"oDi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"oDv" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/living/gym)
+"oDx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ req_one_access = null;
+ req_one_access_txt = "30;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"oDE" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = 6
+ },
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"oDL" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"oDR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"oDY" = (
+/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_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"oEf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"oEw" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_17";
+ pixel_x = 7;
+ pixel_y = 14
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_17";
+ pixel_x = -5;
+ pixel_y = 10
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"oEE" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"oER" = (
+/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/almayer/command/cichallway)
+"oES" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"oEX" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/living/port_emb)
+"oFM" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_m_p)
+"oFU" = (
+/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"oFV" = (
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ serial_number = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"oGx" = (
+/obj/structure/closet/secure_closet/surgical{
+ pixel_x = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/synthcloset)
+"oGy" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"oGC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"oGP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"oHc" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"oHl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"oHx" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/laundry)
+"oIc" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/shipboard/brig/perma)
+"oIn" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"oIr" = (
+/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_x = -1;
+ pixel_y = 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/almayer/medical/medical_science)
+"oIB" = (
+/turf/closed/wall/almayer,
+/area/almayer/command/combat_correspondent)
+"oJp" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/bed/chair/office/dark,
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"oJR" = (
+/obj/effect/projector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES StairsUpper";
+ name = "ARES Core Access";
+ pixel_x = -24;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"oKb" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"oKv" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"oKx" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"oLd" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"oLi" = (
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"oLm" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 4;
+ pixel_y = -8
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"oLv" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"oLw" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"oLF" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ dir = 2;
+ name = "Brig";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/lobby)
+"oLT" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"oLU" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/hydroponics)
+"oMd" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"oMe" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"oMi" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"oMs" = (
+/obj/structure/machinery/computer/cameras/almayer{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"oMH" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"oMM" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/cm_vending/clothing/commanding_officer,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"oMQ" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"oNb" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/ce_room)
+"oNf" = (
+/obj/item/stack/folding_barricade/three,
+/obj/item/stack/folding_barricade/three,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"oNj" = (
+/obj/structure/sign/prop1{
+ pixel_x = -32;
+ pixel_y = 2
+ },
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"oNp" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"oNJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"oOO" = (
+/obj/structure/sign/safety/debark_lounge{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"oPf" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"oPk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "Interrogation Shutters";
+ name = "\improper Shutters";
+ pixel_x = -6;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/obj/item/device/taperecorder{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"oPy" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"oPD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"oPE" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/cic)
+"oPI" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"oQj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/door_control{
+ id = "laddernortheast";
+ name = "North East Ladders Shutters";
+ pixel_y = -25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"oQo" = (
+/obj/item/stool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"oQs" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/book/manual/surgery{
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"oQH" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/briefing)
+"oQM" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/tool/pen,
+/obj/item/book/manual/marine_law{
+ pixel_x = 15;
+ pixel_y = 5
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 16;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"oRj" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"oRk" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"oRJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/surface/table/almayer{
+ layer = 3
+ },
+/obj/item/device/megaphone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"oRO" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"oRV" = (
+/obj/structure/blocker/invisible_wall,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"oRZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"oSq" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel"
+ },
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"oSw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"oSx" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tank/emergency_oxygen/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"oSL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"oTe" = (
+/obj/item/prop/almayer/box,
+/obj/item/prop{
+ desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body.";
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi';
+ icon_state = "m56c";
+ item_state = "m56c";
+ name = "broken M57 'Larry's Will' smartgun";
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/obj/item/frame/light_fixture/small{
+ pixel_y = 17
+ },
+/obj/structure/machinery/door_control{
+ id = "crate_room4";
+ name = "storage shutters";
+ pixel_y = 26
+ },
+/obj/effect/decal/cleanable/cobweb2/dynamic,
+/obj/item/packageWrap,
+/obj/structure/machinery/computer/working_joe{
+ dir = 8;
+ pixel_x = 17
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"oTz" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"oTA" = (
+/obj/structure/machinery/cryopod,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"oUG" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"oVP" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"oWf" = (
+/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{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"oWg" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"oWz" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/starboard_garden)
+"oWI" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/cryo)
+"oXd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"oXp" = (
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"oXJ" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"oXY" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"oYb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"oYp" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
+"oZd" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/obj/item/clothing/suit/chef/classic,
+/obj/item/tool/kitchen/knife/butcher,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"oZp" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light,
+/obj/item/reagent_container/food/snacks/grilledcheese{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/prop/magazine/boots/n055{
+ pixel_x = -9;
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
+"oZV" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"paa" = (
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"paq" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/faxmachine/uscm/brig,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"paI" = (
+/obj/structure/sign/safety/debark_lounge{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"paL" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 1
+ },
+/area/almayer/command/cic)
+"pbh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pbp" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"pbs" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4;
+ layer = 3.25
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"pbC" = (
+/obj/item/bedsheet/red,
+/obj/structure/bed,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/chief_mp_office)
+"pbV" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/command/cic)
+"pbW" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"pch" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"pcj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"pcl" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"pcv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"pcD" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ layer = 5.1;
+ name = "water pipe"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"pcE" = (
+/obj/structure/machinery/conveyor{
+ dir = 8;
+ id = "gym_2";
+ name = "treadmill"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"pcG" = (
+/obj/structure/machinery/door_control{
+ id = "dccbunk";
+ name = "DCC Privacy Shutters";
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"pcO" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"pcQ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pda" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"pdk" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"pdt" = (
+/obj/structure/closet/secure_closet/freezer/fridge/groceries,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"pdG" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Chief MP's Bedroom"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"pef" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"peT" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"pfa" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"pfc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"pfe" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/black{
+ pixel_x = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"pfh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"pfp" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone)
+"pfA" = (
+/obj/item/tool/soap,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"pfH" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"pfM" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/target{
+ name = "punching bag"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"pfT" = (
+/obj/structure/machinery/ares/processor/interface,
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"pgt" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"pgD" = (
+/turf/closed/wall/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"pgH" = (
+/obj/effect/projector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/stairs{
+ dir = 1;
+ icon_state = "ramptop"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"pgM" = (
+/obj/structure/reagent_dispensers/water_cooler/walk_past{
+ pixel_x = 10;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"pha" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"phj" = (
+/obj/item/clothing/head/helmet/marine/reporter,
+/obj/item/clothing/suit/storage/marine/light/reporter,
+/obj/item/clothing/head/cmcap/reporter,
+/obj/item/clothing/head/fedora,
+/obj/structure/closet/secure_closet,
+/obj/item/storage/box/tapes,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"piO" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"piX" = (
+/obj/item/trash/barcardine,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"pjb" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"pje" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"pji" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/stern_hallway)
+"pjw" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"pjF" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/obj/item/tool/lighter/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"pjG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"pjM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"pjP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"pky" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"pkz" = (
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"plk" = (
+/obj/structure/shuttle/part/dropship2/transparent/upper_left_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"plE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"plI" = (
+/obj/structure/machinery/cm_vending/sorted/medical/blood,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"plZ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ access_modified = 1;
+ dir = 2;
+ name = "Brig";
+ req_access = null;
+ req_one_access_txt = "1;3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pmk" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"pmq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/delta)
+"pmv" = (
+/obj/structure/machinery/door/airlock/almayer/marine/alpha{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"pmH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"pmV" = (
+/obj/structure/prop/server_equipment/yutani_server/broken{
+ density = 0;
+ desc = "A powerful server tower housing various AI functions.";
+ name = "server tower";
+ pixel_y = 16
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"pno" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"pnC" = (
+/obj/structure/machinery/cm_vending/sorted/medical/blood,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"pop" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engineering_workshop)
+"poq" = (
+/obj/item/pipe{
+ dir = 4;
+ layer = 3.5
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"poR" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"poZ" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/bed/chair/bolted{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"ppc" = (
+/obj/structure/largecrate/supply/generator,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ppe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/auxiliary_officer_office)
+"ppQ" = (
+/obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"pqc" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"pqi" = (
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/tool/weldingtool,
+/obj/item/tool/weldingtool,
+/obj/item/clothing/head/welding,
+/obj/item/clothing/head/welding,
+/obj/item/device/reagent_scanner,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"pql" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering/port)
+"pqD" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"pqF" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/plastic,
+/obj/item/trash/cigbutt/cigarbutt,
+/obj/item/trash/cigbutt,
+/obj/item/trash/cigbutt,
+/obj/item/trash/cigbutt,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"pqK" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"pqQ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"pqX" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"prx" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"prE" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/kitchen/tray,
+/obj/item/clothing/suit/chef/classic,
+/obj/item/clothing/head/chefhat,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"prY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray,
+/obj/item/tool/kitchen/utensil/pknife,
+/obj/item/tool/kitchen/utensil/pfork,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"psa" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/bridgebunks)
+"psm" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_a_s)
+"psp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"psy" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Security Checkpoint"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"psK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "tc02";
+ name = "Door Release";
+ normaldoorcontrol = 1;
+ pixel_x = -28;
+ pixel_y = 23
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"psO" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"pth" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/blue,
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"ptj" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"ptv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"ptK" = (
+/turf/closed/wall/almayer,
+/area/almayer/engineering/upper_engineering/starboard)
+"pud" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"pun" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/shipboard/port_missiles)
+"pur" = (
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/cryo_cells)
+"put" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engineering_workshop)
+"puI" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"puK" = (
+/obj/structure/largecrate/supply,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"puO" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"puR" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"pvh" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/item/tool/warning_cone{
+ pixel_x = -21;
+ pixel_y = -9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"pvt" = (
+/obj/structure/sign/safety/refridgeration{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"pvJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"pvP" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"pwt" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"pwK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"pxd" = (
+/obj/structure/closet/secure_closet/freezer/fridge/full,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/reagent_container/food/condiment/enzyme,
+/obj/item/reagent_container/food/condiment/enzyme,
+/obj/structure/phone_base{
+ name = "Kitchen Telephone";
+ phone_category = "Almayer";
+ phone_id = "Kitchen";
+ pixel_x = -8;
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"pxj" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"pxo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"pxD" = (
+/obj/structure/machinery/vending/coffee{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/machinery/vending/snack{
+ pixel_x = -18;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"pxG" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"pxJ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"pyc" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"pyi" = (
+/obj/structure/prop/almayer/missile_tube{
+ icon_state = "missiletubesouth"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_missiles)
+"pyj" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"pyl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"pyy" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"pyC" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"pyL" = (
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"pzc" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pzG" = (
+/obj/docking_port/stationary/emergency_response/port1,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"pzJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"pzO" = (
+/obj/item/tool/warning_cone{
+ pixel_y = 13
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"pzQ" = (
+/obj/structure/largecrate/random/barrel,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"pzV" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/briefing)
+"pzZ" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"pAR" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"pBn" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"pBU" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "83"
+ },
+/area/almayer/hallways/hangar)
+"pBW" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"pCi" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull/u_f_s)
+"pCr" = (
+/obj/structure/machinery/cm_vending/sorted/attachments/blend,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"pCD" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 14;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/stern_hallway)
+"pDh" = (
+/obj/structure/machinery/power/monitor{
+ name = "Core Power Monitoring"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"pDm" = (
+/obj/structure/surface/rack,
+/obj/item/roller,
+/obj/item/roller,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"pDo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"pDr" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"pDt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/bravo)
+"pDB" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/machinery/disposal,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"pDJ" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "62"
+ },
+/area/almayer/hallways/hangar)
+"pDL" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/structure/phone_base/rotary{
+ name = "Captain's Office";
+ phone_category = "Offices";
+ phone_id = "Captain's Office";
+ pixel_y = 6
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"pEl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/ladder/fragile_almayer{
+ height = 1;
+ id = "kitchen"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"pEt" = (
+/obj/structure/phone_base{
+ name = "Brig Offices Telephone";
+ phone_category = "Almayer";
+ phone_id = "Brig Main Offices";
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pEy" = (
+/obj/item/ammo_casing/bullet,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"pEB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"pEJ" = (
+/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/almayer/medical/containment/cell)
+"pEY" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"pFa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"pFg" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ id = "Perma 1";
+ name = "\improper isolation shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/perma)
+"pFA" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/lower_engineering)
+"pFM" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"pFQ" = (
+/obj/structure/machinery/conveyor{
+ id = "req_belt"
+ },
+/obj/structure/plasticflaps,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"pGG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/fancy/cigarettes/lucky_strikes,
+/obj/item/tool/lighter,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/machinery/door_control{
+ id = "Execution Shutters";
+ name = "Privacy Shutters";
+ pixel_y = 12;
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/execution)
+"pGK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"pGM" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"pGN" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/aluminum{
+ amount = 20
+ },
+/obj/item/stack/sheet/copper{
+ amount = 20;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/mineral/gold{
+ amount = 3;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/mineral/silver{
+ amount = 5;
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/mineral/phoron{
+ amount = 25
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"pGP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/lights/bulbs{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"pGT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/general_equipment)
+"pHp" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/perma)
+"pHA" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"pHG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"pIf" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/lower_engineering)
+"pIj" = (
+/obj/structure/shuttle/part/dropship2/right_outer_wing_connector,
+/turf/open/space/basic,
+/area/almayer/hallways/hangar)
+"pIk" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "AftStarboardMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/lower_hull/l_a_s)
+"pIH" = (
+/obj/structure/machinery/door_control{
+ id = "perma_exit";
+ name = "\improper Exit Shutters";
+ pixel_y = -22;
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/perma)
+"pIU" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lockerroom)
+"pIV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"pJi" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"pJD" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/item/tool/soap,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"pJE" = (
+/obj/structure/closet/secure_closet{
+ name = "\improper Execution Firearms"
+ },
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"pJJ" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"pJR" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresUp";
+ vector_x = -97;
+ vector_y = 65
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4
+ },
+/area/almayer/command/airoom)
+"pJW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "3;22;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"pKZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"pLO" = (
+/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/almayer/medical/containment/cell)
+"pLW" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/pilotbunks)
+"pLZ" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"pMj" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"pMp" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"pMJ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"pML" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"pNa" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"pNp" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"pNG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"pNM" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"pNP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/item/reagent_container/food/snacks/cheesewedge{
+ pixel_x = -10;
+ pixel_y = 7
+ },
+/mob/living/simple_animal/mouse/white/Doc,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"pNQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"pOi" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"pOB" = (
+/obj/item/trash/cigbutt{
+ pixel_x = -10;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice10";
+ pixel_x = -16;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"pOD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"pON" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 8
+ },
+/area/almayer/command/cic)
+"pOY" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/microwave{
+ density = 0;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"pPv" = (
+/obj/structure/closet/cabinet,
+/obj/item/reagent_container/food/drinks/bottle/wine,
+/obj/item/reagent_container/food/drinks/bottle/wine,
+/obj/item/reagent_container/food/drinks/bottle/wine,
+/obj/item/reagent_container/food/drinks/bottle/wine,
+/obj/item/reagent_container/food/drinks/bottle/wine,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"pPz" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"pPF" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"pPM" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"pPN" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"pPV" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/structure/machinery/door_control{
+ id = "Alpha_2";
+ name = "Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = 23;
+ specialfunctions = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"pQq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"pQu" = (
+/obj/structure/machinery/chem_dispenser/soda{
+ pixel_y = 20
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"pQy" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/bridgebunks)
+"pQF" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "17;18;21";
+ vend_x_offset = 0;
+ vend_y_offset = 0
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"pQG" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"pQN" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/franks,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"pQP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"pQV" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"pQY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"pRn" = (
+/obj/structure/bed,
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"pRy" = (
+/turf/open/floor/almayer/research/containment/corner_var1{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell/cl)
+"pRL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"pRO" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"pRT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_y = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 8;
+ name = "\improper Tool Closet"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"pRX" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/medical/hydroponics)
+"pSL" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"pSU" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"pTc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"pTj" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"pTt" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES JoeCryo";
+ name = "\improper ARES Core Shutters";
+ plane = -7
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"pTT" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"pUd" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/command/computerlab)
+"pUe" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"pUf" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"pUi" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/tool/crowbar{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"pUp" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = 27
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"pUA" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/window/reinforced/ultra{
+ dir = 1
+ },
+/obj/structure/window/reinforced/ultra{
+ dir = 4
+ },
+/obj/item/device/flashlight/lamp/on,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"pUJ" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"pUY" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"pVu" = (
+/obj/item/paper/prison_station/interrogation_log{
+ pixel_x = 10;
+ pixel_y = 7
+ },
+/obj/structure/largecrate/random/barrel/green,
+/obj/item/limb/hand/l_hand{
+ pixel_x = -5;
+ pixel_y = 14
+ },
+/obj/effect/spawner/random/balaclavas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"pVx" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/squads/req)
+"pVA" = (
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = 2;
+ pixel_y = 18
+ },
+/obj/item/tool/warning_cone{
+ pixel_x = -12
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"pVB" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
+ },
+/obj/structure/window/reinforced/ultra{
+ dir = 1
+ },
+/obj/structure/window/reinforced/ultra{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"pVZ" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull/u_a_s)
+"pWf" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ dir = 2;
+ name = "\improper Engineering Workshop"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engineering_workshop)
+"pWr" = (
+/obj/structure/surface/rack,
+/obj/item/tool/minihoe{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/tool/minihoe{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/tool/minihoe{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/tool/plantspray/weeds,
+/obj/item/tool/plantspray/weeds,
+/obj/structure/sign/safety/hvac_old{
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"pWA" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"pWG" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pWN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"pXj" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"pXl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"pXn" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"pXx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"pXQ" = (
+/obj/structure/sign/safety/intercom{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"pXV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/squads/req)
+"pYi" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/pipes/vents/pump/no_boom{
+ dir = 8
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"pYo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/containment)
+"pYu" = (
+/obj/item/tool/warning_cone{
+ pixel_x = -12;
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = -16
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"pYF" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"pYX" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"pZo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_umbilical)
+"pZK" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"pZS" = (
+/obj/structure/bed/sofa/south/grey/left,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"pZV" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"qam" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"qaD" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"qaJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/execution)
+"qaV" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"qaW" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"qaZ" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/lower_hull/l_f_s)
+"qbd" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"qbt" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/shipboard/brig/surgery)
+"qbx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"qby" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = -16
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"qbO" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"qbZ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{
+ dir = 1;
+ name = "\improper Engineering Bunks"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"qce" = (
+/obj/item/trash/cigbutt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"qck" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/structure/machinery/computer/cameras/wooden_tv/almayer{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"qcl" = (
+/obj/structure/sign/safety/conference_room{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"qcy" = (
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"qdk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "kitchen";
+ name = "\improper Kitchen Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"qdv" = (
+/obj/item/bedsheet/purple{
+ layer = 3.2
+ },
+/obj/item/bedsheet/purple{
+ pixel_y = 13
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/clothing/head/beret/royal_marine,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"qdz" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/barricade/handrail/medical,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"qdA" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"qdQ" = (
+/obj/structure/bed/sofa/vert/grey/top{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"qee" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"qej" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/laundry)
+"qep" = (
+/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/almayer/medical/lower_medical_medbay)
+"qer" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"qeF" = (
+/obj/structure/sign/safety/reception{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"qeK" = (
+/obj/structure/pipes/vents/scrubber,
+/obj/structure/surface/table/reinforced/black,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/cable_coil{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/obj/item/device/helmet_visor{
+ pixel_x = 8;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"qeY" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/toy/beach_ball/holoball,
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"qfa" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"qfh" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"qfy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/filingcabinet/filingcabinet{
+ density = 0;
+ pixel_x = -11;
+ pixel_y = 16
+ },
+/obj/structure/filingcabinet/filingcabinet{
+ density = 0;
+ pixel_x = 4;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"qfA" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/cichallway)
+"qfR" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"qga" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/starboard_garden)
+"qgw" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"qgG" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"qgH" = (
+/obj/item/storage/backpack/marine/satchel{
+ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
+ icon = 'icons/obj/janitor.dmi';
+ icon_state = "trashbag3";
+ name = "trash bag";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"qgK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/generic/press{
+ dir = 1;
+ name = "\improper Combat Correspondent Room"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/combat_correspondent)
+"qgN" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"qgP" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "35"
+ },
+/area/almayer/hallways/hangar)
+"qhb" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"qhc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/stern_hallway)
+"qhx" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"qhB" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/mgoggles/prescription,
+/obj/item/clothing/glasses/mbcg,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"qhU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"qic" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull)
+"qih" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Tanker Quarters";
+ req_one_access_txt = "19;27"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/tankerbunks)
+"qim" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"qin" = (
+/obj/structure/sign/poster/safety{
+ pixel_x = 27
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"qit" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"qiy" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"qiI" = (
+/obj/structure/girder/displaced,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"qjz" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/tool/lighter,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"qjF" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"qjN" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"qjV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"qkb" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"qkn" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"qkP" = (
+/obj/item/frame/light_fixture{
+ anchored = 1;
+ desc = "A broken fluorescent tube light.";
+ dir = 8;
+ icon_state = "tube-broken";
+ name = "broken light fixture"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"qld" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_umbilical)
+"qlz" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "SEA Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/sea_office)
+"qmk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/facepaint/green,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"qmt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"qmy" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "researchlockdownext_windoor";
+ name = "Windoor Shutters";
+ pixel_x = -7;
+ pixel_y = 9;
+ req_access_txt = "28"
+ },
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 1;
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/structure/sign/safety/biohazard{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ref_bio_storage{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "researchlockdownext_se_2";
+ name = "Window Shutters";
+ pixel_x = -7;
+ pixel_y = 4;
+ req_access_txt = "28"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"qmC" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ name = "\improper Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"qmD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"qmE" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/machinery/door_control{
+ id = "perma_lockdown";
+ name = "\improper Perma Cells Lockdown";
+ pixel_x = 24;
+ pixel_y = 6;
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"qmL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"qmP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/faxmachine/uscm,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"qmX" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"qnd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"qnh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"qni" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"qnl" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/emails{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"qnC" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"qnD" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Crew Chief's Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"qnP" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"qof" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 8;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/main_office)
+"qom" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/chem_dispenser/soda{
+ density = 0;
+ pixel_x = 1;
+ pixel_y = 14;
+ wrenchable = 0
+ },
+/obj/structure/sign/safety/coffee{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"qon" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"qoJ" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"qoY" = (
+/obj/structure/machinery/vending/hydroseeds,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"qpx" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/vents/scrubber,
+/obj/item/storage/box/pillbottles,
+/obj/item/storage/box/pillbottles,
+/obj/item/storage/box/pillbottles,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"qpQ" = (
+/obj/item/reagent_container/glass/beaker/bluespace,
+/obj/structure/machinery/chem_dispenser/medbay,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/chemistry)
+"qpU" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"qqn" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = -12
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"qqr" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"qqu" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/command/lifeboat)
+"qqK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"qqN" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"qqQ" = (
+/obj/structure/machinery/cm_vending/sorted/medical/blood{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"qrc" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"qre" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"qrv" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"qsd" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"qsC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"qsF" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"qsL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/ce_room)
+"qtn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"qtv" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"qtR" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"qtS" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"quq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"quv" = (
+/obj/structure/pipes/standard/tank/oxygen,
+/obj/structure/sign/safety/med_cryo{
+ pixel_x = -6;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/cryo_tubes)
+"quI" = (
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_y = -21;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"quT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ dir = 2;
+ id_tag = "tc02";
+ name = "\improper Treatment Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"quV" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/bed/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"qvf" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cryo)
+"qvC" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"qvI" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"qwo" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"qwp" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "CIC_Conference";
+ name = "\improper CIC Conference Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/command/cichallway)
+"qwt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"qwJ" = (
+/obj/structure/machinery/door_control{
+ id = "ARES Operations Left";
+ name = "ARES Operations Shutter";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"qxm" = (
+/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/almayer/medical/containment/cell)
+"qxz" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock PU-5";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"qxA" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"qxC" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ id = "Alpha_1";
+ name = "\improper Bathroom"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"qxE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/biolab{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"qxL" = (
+/obj/structure/machinery/medical_pod/autodoc,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"qxP" = (
+/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/almayer/medical/containment/cell)
+"qyd" = (
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/perma)
+"qyi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"qyo" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/command/cichallway)
+"qys" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"qyz" = (
+/obj/structure/machinery/computer/cameras/containment/hidden{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/photo_album,
+/obj/item/device/camera_film,
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"qyD" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"qyF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/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/almayer/hallways/vehiclehangar)
+"qyW" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"qzc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_point_defense)
+"qzH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/red,
+/obj/structure/phone_base/rotary{
+ name = "Brig CMP's Office Telephone";
+ phone_category = "Offices";
+ phone_id = "Brig CMP's Office";
+ pixel_x = 15
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"qAA" = (
+/obj/structure/machinery/power/monitor{
+ name = "Main Power Grid Monitoring"
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/ce_room)
+"qAT" = (
+/obj/structure/machinery/light,
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/item/stack/sheet/mineral/phoron{
+ amount = 25;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/device/reagent_scanner{
+ pixel_x = -16;
+ pixel_y = 5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"qBy" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "23"
+ },
+/area/almayer/hallways/hangar)
+"qBM" = (
+/obj/item/storage/fancy/crayons{
+ layer = 3.1;
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"qCc" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"qCg" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"qCi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"qCo" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"qCy" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/bridgebunks)
+"qCG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"qDt" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Lifeboat Control Bubble";
+ req_access = null
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"qDv" = (
+/obj/structure/closet,
+/obj/item/stack/sheet/glass/large_stack,
+/obj/item/device/lightreplacer,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/stack/rods{
+ amount = 40
+ },
+/obj/item/tool/weldingtool,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"qDN" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/marinemed,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"qDP" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_four)
+"qEk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/command/cic)
+"qEn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{
+ name = "\improper Research Hydroponics Workshop"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/hydroponics)
+"qEy" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/processing)
+"qEW" = (
+/obj/structure/sign/poster/ad{
+ pixel_x = 30
+ },
+/obj/structure/closet,
+/obj/item/clothing/mask/cigarette/weed,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"qFb" = (
+/obj/structure/sign/safety/storage{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"qFl" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/hull/upper_hull/u_f_p)
+"qFu" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "Cell Privacy Shutters";
+ name = "\improper Cell Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/cells)
+"qFG" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"qFK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/squads/delta)
+"qFQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"qFW" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"qGc" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"qGF" = (
+/obj/structure/machinery/optable,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_two)
+"qHb" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "Saferoom Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"qHg" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"qHl" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"qHq" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 2;
+ name = "\improper Evacuation Airlock SU-6";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"qHF" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/bodybags{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/box/bodybags,
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"qHM" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"qIL" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/item/folder/white{
+ pixel_x = 6
+ },
+/obj/item/storage/fancy/vials/empty{
+ pixel_y = 10;
+ start_vials = 2
+ },
+/obj/item/tool/pen{
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"qJf" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/upper_engineering)
+"qJj" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = -12
+ },
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = 2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"qJx" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"qJy" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/sign/safety/storage{
+ pixel_x = 33;
+ pixel_y = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/hydroponics)
+"qJF" = (
+/obj/structure/largecrate/supply,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"qJN" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio,
+/obj/item/tool/weldpack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"qJS" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_x = -11;
+ pixel_y = -1
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"qJY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/bottle/orangejuice{
+ layer = 3.1;
+ pixel_x = -12;
+ pixel_y = 14
+ },
+/obj/item/toy/deck/uno{
+ layer = 3.1;
+ pixel_x = -3;
+ pixel_y = -1
+ },
+/obj/item/toy/handcard/uno_reverse_yellow{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/spacecash/c10{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"qJZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"qKi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/upper_engineering)
+"qKz" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"qKF" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio/headset/almayer/mt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"qKM" = (
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"qLi" = (
+/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
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/containment)
+"qLj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"qLo" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"qLp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"qLt" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wirecutters/clippers,
+/obj/item/tool/minihoe{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/tool/plantspray/weeds,
+/obj/item/tool/plantspray/weeds,
+/obj/item/tool/minihoe{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"qLH" = (
+/obj/structure/bed/chair{
+ buckling_y = 6;
+ dir = 1;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"qLK" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"qLS" = (
+/obj/structure/pipes/standard/manifold/hidden/supply/no_boom,
+/turf/open/floor/almayer/no_build{
+ dir = 4
+ },
+/area/almayer/command/airoom)
+"qMe" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/tool/minihoe{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/reagent_container/glass/fertilizer/ez,
+/obj/item/seeds/ambrosiavulgarisseed,
+/obj/item/tool/plantspray/weeds,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"qMf" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"qMu" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull/u_a_p)
+"qMP" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"qMR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"qNd" = (
+/obj/structure/machinery/cryopod,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"qNv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"qNy" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"qNG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"qNR" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"qOf" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "medicalemergency";
+ name = "\improper Medical Bay Lockdown"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"qOk" = (
+/obj/docking_port/stationary/lifeboat_dock/port,
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/space/almayer/lifeboat_dock)
+"qOp" = (
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/gym)
+"qOU" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"qPg" = (
+/obj/item/tool/warning_cone{
+ pixel_x = -12;
+ pixel_y = 16
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"qPD" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"qPE" = (
+/obj/structure/machinery/prop/almayer/CICmap,
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/overwatch_console{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/securestorage)
+"qPO" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/surgery)
+"qPS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"qQc" = (
+/obj/structure/closet/secure_closet/personal/patient{
+ name = "morgue closet"
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"qQp" = (
+/obj/structure/largecrate/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"qQM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"qQP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"qQS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"qRj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"qRo" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"qRT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/execution)
+"qSl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"qSm" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_point_defense)
+"qSE" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/cholula,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"qSK" = (
+/obj/item/stack/sheet/metal{
+ layer = 2.9;
+ pixel_x = 4;
+ pixel_y = 21
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"qSX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"qTY" = (
+/obj/structure/machinery/gibber,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"qTZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_umbilical)
+"qUb" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"qUh" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"qUj" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"qUp" = (
+/obj/structure/surface/table/almayer,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/powered/agent)
+"qUq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"qUH" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"qUL" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"qVC" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"qVF" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/execution)
+"qVM" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_m_p)
+"qVS" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/sign/safety/conference_room{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"qVT" = (
+/obj/structure/shuttle/part/dropship2/bottom_right_wall,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"qVU" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldingtool,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"qWt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"qWI" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"qWR" = (
+/turf/closed/wall/almayer/research/containment/wall/corner{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell/cl)
+"qWT" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"qXo" = (
+/obj/structure/machinery/seed_extractor,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"qXx" = (
+/obj/structure/platform,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"qXM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"qXZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"qYr" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/obj/structure/catwalk{
+ health = null
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"qYt" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"qYu" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"qYC" = (
+/obj/structure/disposalpipe/down/almayer{
+ dir = 4;
+ id = "almayerlink_OT_req"
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"qYG" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/command/lifeboat)
+"qYH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ name = "\improper Execution Equipment"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/execution)
+"qYN" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/toy/deck,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
+"qYQ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"qYW" = (
+/obj/item/clothing/shoes/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"qYZ" = (
+/obj/structure/sign/safety/security{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"qZg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"qZF" = (
+/obj/structure/phone_base/rotary{
+ name = "CL Office Telephone";
+ phone_category = "Almayer";
+ phone_id = "CL Office"
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"qZH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/living/offices)
+"qZX" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"rag" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"rav" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/item/reagent_container/glass/rag,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"raK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"raU" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "72"
+ },
+/area/almayer/hallways/hangar)
+"rbp" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"rbv" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"rby" = (
+/obj/structure/machinery/door_control{
+ id = "ARES Mainframe Left";
+ name = "ARES Mainframe Lockdown";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_one_access_txt = "200;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"rbB" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/computerlab)
+"rbH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"rbX" = (
+/obj/structure/sign/safety/manualopenclose{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"rbY" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "crate_room";
+ name = "\improper Storage Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"rcx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"rcH" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"rcS" = (
+/obj/structure/machinery/computer/cryopod/eng{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"rde" = (
+/obj/structure/sign/prop1,
+/turf/closed/wall/almayer,
+/area/almayer/living/grunt_rnr)
+"rdh" = (
+/obj/structure/machinery/light{
+ dir = 1;
+ pixel_x = 16
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"rdr" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/lights/tubes{
+ pixel_x = -8
+ },
+/obj/item/storage/box/lights/tubes{
+ pixel_x = 5
+ },
+/obj/item/storage/box/lights/tubes{
+ pixel_y = 10
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"rdt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer/research/containment/corner4,
+/area/almayer/medical/containment/cell)
+"rdI" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"rdK" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_a_s)
+"rdS" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"rdX" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "26"
+ },
+/area/almayer/hallways/hangar)
+"rdY" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"ren" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/target{
+ name = "punching bag"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"reL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/sliceable/bread{
+ pixel_y = 8
+ },
+/obj/item/reagent_container/food/snacks/sliceable/bread{
+ pixel_y = 4
+ },
+/obj/item/reagent_container/food/snacks/sliceable/bread,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"rfb" = (
+/turf/closed/wall/almayer/research/containment/wall/purple{
+ dir = 8;
+ icon_state = "containment_window_h"
+ },
+/area/almayer/medical/containment/cell/cl)
+"rfg" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"rfI" = (
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"rfT" = (
+/obj/item/frame/camera{
+ desc = "The Staff Officer insisted he needed to monitor everyone at all times.";
+ layer = 2.9;
+ name = "broken camera";
+ pixel_x = -7;
+ pixel_y = -6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"rgy" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"rgA" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"rgJ" = (
+/obj/structure/machinery/light,
+/obj/structure/machinery/disposal,
+/obj/item/bananapeel{
+ desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil";
+ icon = 'icons/obj/items/weapons/guns/attachments.dmi';
+ icon_state = "iffbarrel";
+ name = "Broken B8 Smart-Scope";
+ pixel_x = -1;
+ pixel_y = 11
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"rgK" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ layer = 3.5;
+ pixel_x = 5;
+ pixel_y = 14
+ },
+/obj/item/attachable/bayonet{
+ pixel_x = -14;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"rgW" = (
+/turf/open/floor/almayer{
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/living/briefing)
+"rhO" = (
+/obj/structure/machinery/vending/cola/research{
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"rhQ" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"ril" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = -16;
+ pixel_y = 17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"riA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"riE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/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/almayer/medical/medical_science)
+"riJ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"riM" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/sign/safety/water{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"riP" = (
+/obj/structure/machinery/light,
+/obj/structure/sign/safety/rewire{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"riQ" = (
+/obj/item/device/multitool,
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"rjn" = (
+/obj/structure/machinery/light,
+/obj/structure/reagent_dispensers/water_cooler/stacks,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"rjw" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"rjG" = (
+/obj/structure/pipes/standard/tank/oxygen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"rjH" = (
+/obj/structure/surface/rack,
+/obj/item/storage/beer_pack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"rjV" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/wooden_tv/prop{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = 27;
+ serial_number = 11
+ },
+/obj/item/trash/pistachios{
+ layer = 2;
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/structure/machinery/recharger{
+ layer = 3.1;
+ pixel_y = 22
+ },
+/obj/item/ammo_magazine/rifle/incendiary{
+ current_rounds = 0;
+ desc = "A 10mm assault rifle magazine with ':D' drawn on the side";
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"rka" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"rkh" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ id = "Perma 1L";
+ name = "\improper cell shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ name = "\improper Isolation Cell"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
+"rku" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/wrench{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/tool/wrench{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"rkz" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"rkK" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"rkL" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 2;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/main_office)
+"rlf" = (
+/obj/structure/machinery/cm_vending/clothing/synth/snowflake,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/synthcloset)
+"rlh" = (
+/obj/structure/closet/firecloset,
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"rll" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"rlz" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"rlQ" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"rlZ" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"rmc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"rmf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"rmv" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Interrogation Observation"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"rmD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"rmN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"rna" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/command/airoom)
+"rne" = (
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"rnH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/computer/crew/alt{
+ dir = 8;
+ pixel_x = 17
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"rnM" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"rnN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"rob" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"rod" = (
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"rou" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"roG" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"roH" = (
+/obj/effect/step_trigger/ares_alert/terminals,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ARES Operations Left";
+ name = "\improper ARES Operations Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"roU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"rpd" = (
+/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/almayer/hallways/port_hallway)
+"rph" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/stern_hallway)
+"rpK" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"rpW" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"rqb" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"rqj" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"rqw" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"rqE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"rra" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ id = "Perma 2L";
+ name = "\improper cell shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ name = "\improper Isolation Cell"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
+"rri" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/offices/flight)
+"rrq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"rrB" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/bridgebunks)
+"rrK" = (
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"rrV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"rsm" = (
+/obj/structure/shuttle/part/dropship2/nose_front_right,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"rsx" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"rsK" = (
+/obj/structure/sign/safety/hvac_old,
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
+"rsM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"rsO" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"rsW" = (
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"rsY" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"rtd" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/starboard)
+"rth" = (
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"rtj" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"rtA" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/flashlight/pen{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/paper_bin/uscm{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"rtV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/pizzabox{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"rtY" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/ashtray/bronze,
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/pilotbunks)
+"rub" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"ruc" = (
+/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/almayer/medical/containment/cell)
+"rui" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"rux" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"ruz" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"rvo" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"rvA" = (
+/turf/open/floor/almayer,
+/area/almayer/living/numbertwobunks)
+"rvT" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"rwb" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"rwv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair/comfy/bravo,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"rwS" = (
+/obj/structure/machinery/light/small,
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"rwY" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "pobunk2";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/living/pilotbunks)
+"rxk" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"rxG" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"rxK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/navigation)
+"rxV" = (
+/obj/structure/barricade/handrail,
+/obj/structure/largecrate/supply/generator,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"ryt" = (
+/obj/structure/pipes/standard/manifold/visible,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ryG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"ryR" = (
+/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"rzj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ access_modified = 1;
+ name = "\improper Brig";
+ req_access = null;
+ req_one_access_txt = "1;3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/main_office)
+"rzN" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/containment)
+"rzP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"rAb" = (
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/briefing)
+"rAv" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/tinted{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/cells)
+"rAx" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"rAC" = (
+/obj/docking_port/stationary/emergency_response/external/port5,
+/turf/open/space/basic,
+/area/space)
+"rAD" = (
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/weapon_room)
+"rAN" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"rAP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"rBa" = (
+/obj/structure/machinery/cm_vending/clothing/synth,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/synthcloset)
+"rBb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"rBj" = (
+/obj/structure/machinery/processor,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"rBk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_umbilical)
+"rBx" = (
+/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/almayer/command/cichallway)
+"rBH" = (
+/obj/structure/machinery/constructable_frame{
+ icon_state = "box_2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"rBV" = (
+/obj/structure/bed/chair/bolted,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"rCi" = (
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 8
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"rCp" = (
+/obj/structure/largecrate/random/case/small,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"rCw" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"rCD" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"rCK" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"rCL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"rCO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"rCU" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"rDb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"rDd" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/structure/machinery/computer/emails{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"rDe" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/kepler_crisps{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/toy/deck{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = 33
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"rDi" = (
+/obj/structure/sign/safety/water{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"rDr" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/medical_science)
+"rDt" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"rDv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"rDV" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"rEf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"rEm" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/spacecash/c500{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/ashtray/bronze{
+ pixel_x = -13;
+ pixel_y = -4
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliason)
+"rEn" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"rEr" = (
+/obj/structure/prop/almayer/name_stencil{
+ icon_state = "almayer3"
+ },
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"rEu" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"rEv" = (
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"rEY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"rFs" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/folder/black,
+/obj/item/tool/pen,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"rFu" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"rFy" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"rFB" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_umbilical)
+"rFH" = (
+/obj/structure/machinery/body_scanconsole,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"rFM" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "34"
+ },
+/area/almayer/hallways/hangar)
+"rFY" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"rGg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"rGj" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"rGl" = (
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"rGE" = (
+/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
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"rHc" = (
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"rHf" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"rHo" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ dir = 2;
+ id_tag = "tc01";
+ name = "\improper Treatment Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"rHs" = (
+/obj/item/storage/firstaid,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"rHw" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"rHL" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "30"
+ },
+/area/almayer/hallways/hangar)
+"rHN" = (
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"rIj" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ dir = 2;
+ name = "\improper Medical Bay";
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "medicalemergency";
+ name = "\improper Medical Bay Lockdown"
+ },
+/obj/structure/machinery/door_control{
+ id = "medicalemergency";
+ name = "Medbay Lockdown";
+ pixel_y = -23;
+ req_one_access_txt = "2;3;12;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"rID" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"rIH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"rII" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "OuterShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"rIL" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/hallways/hangar)
+"rIO" = (
+/obj/structure/machinery/vending/snack,
+/obj/item/clothing/head/cmcap/boonie/tan{
+ pixel_x = -2;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"rIW" = (
+/obj/structure/machinery/cm_vending/gear/synth,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/synthcloset)
+"rJb" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"rJh" = (
+/obj/item/storage/backpack/marine/satchel{
+ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
+ icon = 'icons/obj/janitor.dmi';
+ icon_state = "trashbag3";
+ name = "trash bag";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/marine/satchel{
+ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
+ icon = 'icons/obj/janitor.dmi';
+ icon_state = "trashbag3";
+ name = "trash bag";
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"rJu" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/living/briefing)
+"rJx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"rJD" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/machinery/cm_vending/own_points/experimental_tools,
+/turf/open/floor/almayer,
+/area/almayer/living/synthcloset)
+"rJK" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"rKd" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 5
+ },
+/area/almayer/command/cic)
+"rKn" = (
+/obj/structure/machinery/door_control{
+ id = "agentshuttle";
+ indestructible = 1;
+ name = "Shutters";
+ pixel_y = 25;
+ req_one_access_txt = "201";
+ use_power = 0
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/powered/agent)
+"rKs" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_one_access = null;
+ req_one_access_txt = "2;30;34"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"rKy" = (
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"rKA" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"rKO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"rKQ" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"rLe" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "29"
+ },
+/area/almayer/hallways/hangar)
+"rLk" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"rLv" = (
+/turf/closed/wall/almayer/research/containment/wall/purple{
+ dir = 4;
+ icon_state = "containment_window_h"
+ },
+/area/almayer/medical/containment/cell/cl)
+"rLU" = (
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell/cl)
+"rNF" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"rOc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"rOj" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/port_hallway)
+"rOs" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clipboard,
+/obj/item/device/binoculars,
+/obj/item/storage/bible,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"rOC" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"rOJ" = (
+/obj/structure/barricade/handrail,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"rPh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"rPt" = (
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"rPC" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"rPD" = (
+/obj/effect/attach_point/fuel/dropship2{
+ pixel_x = -32
+ },
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "33"
+ },
+/area/almayer/hallways/hangar)
+"rPE" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"rPO" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"rQj" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"rQt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"rQy" = (
+/turf/closed/wall/almayer/white/reinforced,
+/area/almayer/medical/hydroponics)
+"rQA" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/delta)
+"rQU" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"rQV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"rQW" = (
+/obj/item/tool/screwdriver,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"rQY" = (
+/obj/structure/bed,
+/obj/structure/machinery/flasher{
+ id = "Cell 3";
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cells)
+"rRq" = (
+/turf/closed/wall/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"rRz" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"rRQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"rRU" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/glass{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/ashtray/glass{
+ pixel_x = -6
+ },
+/obj/item/clothing/mask/cigarette/weed{
+ name = "cigarette";
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/weed{
+ name = "cigarette";
+ pixel_y = 7
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 7;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"rSj" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"rSG" = (
+/obj/structure/toilet{
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"rSH" = (
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/shipboard/brig/lobby)
+"rSK" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"rTk" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"rTt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"rTJ" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"rTV" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"rTZ" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"rUh" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"rUk" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"rUy" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"rUB" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/item/tool/soap,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/cells)
+"rUU" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "panicroomback";
+ name = "\improper Safe Room Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"rVo" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"rVN" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"rWi" = (
+/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"rWs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"rWL" = (
+/obj/structure/barricade/metal,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"rWT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"rXd" = (
+/obj/structure/machinery/vending/security,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"rXj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"rXk" = (
+/obj/structure/barricade/plasteel/metal{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"rXv" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/gym)
+"rXC" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"rXS" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/delta)
+"rYi" = (
+/obj/structure/bed/chair,
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"rYj" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"rYv" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/machinery/computer/station_alert{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"rYJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/taperecorder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices/flight)
+"rZz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"rZB" = (
+/obj/structure/pipes/standard/simple/visible{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"rZF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"rZP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldpack,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"rZR" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"sah" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"saB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"saW" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"sbq" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ icon_state = "almayer_pdoor";
+ id = "n_engi"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/notunnel)
+"sbJ" = (
+/turf/closed/wall/almayer/white/hull,
+/area/almayer/powered/agent)
+"sbM" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"scg" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"sco" = (
+/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/almayer/command/cichallway)
+"scu" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"scy" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"scz" = (
+/obj/structure/prop/almayer/name_stencil{
+ icon_state = "almayer5"
+ },
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"scD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"scH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"scI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"scS" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/machinery/light{
+ dir = 8;
+ invisibility = 101;
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"sdl" = (
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"sdn" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile"
+ },
+/area/almayer/medical/upper_medical)
+"sdq" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ layer = 3.1;
+ pixel_x = -8
+ },
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"sdu" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"sdw" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"sdC" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"sdF" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"sdO" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "med1"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"sed" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"seO" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"sfU" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower_engineering)
+"sgc" = (
+/obj/structure/closet/crate/freezer/cooler{
+ pixel_x = -7
+ },
+/obj/structure/largecrate/random/mini/ammo{
+ pixel_x = 10;
+ pixel_y = -4
+ },
+/obj/item/reagent_container/food/drinks/cans/aspen,
+/obj/item/reagent_container/food/drinks/cans/aspen,
+/obj/item/reagent_container/food/drinks/cans/aspen,
+/obj/item/reagent_container/food/drinks/cans/aspen,
+/obj/structure/sign/safety/storage{
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"sgi" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/processing)
+"sgj" = (
+/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{
+ dir = 8
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
+"sgw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/flight_recorder{
+ pixel_x = 9
+ },
+/obj/item/tool/weldingtool{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"sgy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"sgM" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"sgR" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"sgU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"shb" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"shh" = (
+/obj/structure/machinery/autolathe,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"shp" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/obj/structure/machinery/flasher{
+ id = "briefing_flash";
+ range = 12
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer/uscm/directional{
+ dir = 8
+ },
+/area/almayer/living/briefing)
+"shs" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 9;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"sht" = (
+/turf/open/floor/almayer,
+/area/almayer/living/pilotbunks)
+"shw" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"sip" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"siz" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/hangar{
+ dir = 8;
+ pixel_y = -12
+ },
+/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
+ dir = 8;
+ name = "Dropship Remote Control Console";
+ pixel_y = 12;
+ shuttleId = "dropship_alamo";
+ disabled = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
+"siW" = (
+/obj/structure/machinery/body_scanconsole,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"sjc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"sjj" = (
+/obj/structure/machinery/keycard_auth{
+ pixel_x = -7;
+ pixel_y = 25
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 8;
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 15;
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
+"sjr" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat1-D1";
+ linked_dock = "almayer-lifeboat1";
+ throw_dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"skg" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"skl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"skn" = (
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/almayer/shipboard/sea_office)
+"skF" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"sld" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"slP" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 8
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 32;
+ pixel_y = -7
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/lower_hull/l_f_s)
+"smi" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"smn" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"smr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engineering_workshop)
+"snb" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "cicladder3"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/living/briefing)
+"sni" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/command/cic)
+"snm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"snw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"snE" = (
+/obj/structure/machinery/cryopod/right,
+/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{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"snM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"snR" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"soa" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cells)
+"soq" = (
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/synthcloset)
+"sos" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"sou" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"sow" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"soA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"soD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"soK" = (
+/obj/item/storage/firstaid/fire/empty,
+/obj/item/storage/firstaid/o2/empty,
+/obj/item/storage/firstaid/rad/empty,
+/obj/item/storage/firstaid/toxin/empty,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"soP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"soQ" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"soS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"soX" = (
+/obj/structure/window/reinforced/toughened,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"spF" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"spK" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"spS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"spT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"sqa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"sqf" = (
+/turf/closed/wall/almayer/white/reinforced,
+/area/almayer/medical/upper_medical)
+"sqo" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"sqW" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/tomatoseed,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"srV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/paper_bin/uscm{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/tool/pen{
+ pixel_x = -6
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ssa" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "DeployWorkR";
+ name = "\improper Workshop Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/repair_bay)
+"ssD" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ssE" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"ssU" = (
+/obj/structure/machinery/constructable_frame,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ssW" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/ammo_magazine/shotgun/buckshot,
+/obj/item/weapon/gun/shotgun/combat,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/ammo_magazine/shotgun/buckshot,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"ssX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"ssZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"sta" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/navigation)
+"sti" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/random/balaclavas,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"str" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/obj/structure/catwalk{
+ health = null
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"stY" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancenorth";
+ name = "\improper North Hangar Podlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/starboard_hallway)
+"suk" = (
+/obj/item/tool/weldingtool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"suy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"suT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"suV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"svd" = (
+/obj/structure/machinery/recharge_station,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"svf" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"svl" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"svp" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"swn" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/surgery)
+"swo" = (
+/obj/structure/machinery/vending/security,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"swt" = (
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/living/grunt_rnr)
+"swE" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"swH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -12;
+ pixel_y = 28
+ },
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4;
+ pixel_x = -17
+ },
+/obj/item/device/flashlight/lamp,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"swM" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"swN" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/suit/storage/hazardvest/blue,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"sxe" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"sxu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"sxD" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Officer's Bunk"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"syy" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "67"
+ },
+/area/almayer/hallways/hangar)
+"syH" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/delta)
+"syM" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"syP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"szm" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 10";
+ buildstate = 1
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"szy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"szE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/offices)
+"szM" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"szO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"szU" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/numbertwobunks)
+"szX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"sAc" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"sAj" = (
+/obj/structure/phone_base{
+ dir = 8;
+ name = "RO Office Telephone";
+ phone_category = "Offices";
+ phone_id = "RO Office";
+ pixel_x = 16
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"sAm" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"sAA" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"sAC" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
+"sBF" = (
+/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/airlock/almayer/command/reinforced{
+ access_modified = 1;
+ dir = 1;
+ id_tag = "CO-Office";
+ name = "\improper Commanding Officer's Office";
+ req_access = null;
+ req_access_txt = "31"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/commandbunks)
+"sBH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/execution)
+"sBL" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"sCA" = (
+/obj/structure/bed/chair/comfy/delta{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"sCC" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"sCD" = (
+/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 = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"sCI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"sCQ" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"sDu" = (
+/obj/item/clothing/under/marine/dress,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"sDy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"sDC" = (
+/obj/structure/sign/safety/analysis_lab{
+ pixel_y = 26
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 15;
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"sDD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"sDM" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"sEa" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"sEd" = (
+/obj/structure/machinery/cryopod/right,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"sEi" = (
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"sEp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"sEq" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"sEt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"sEK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/airoom)
+"sEM" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -12;
+ pixel_y = -28
+ },
+/obj/item/device/flashlight/lamp,
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = -17
+ },
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"sFf" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"sFh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"sFC" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 8;
+ id = "Interrogation Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/main_office)
+"sFF" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/item/stack/tile/carpet{
+ amount = 20
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"sFR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_p)
+"sFZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"sGe" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "ForePortMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"sGh" = (
+/turf/open/floor/almayer/uscm/directional,
+/area/almayer/command/lifeboat)
+"sGL" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"sGU" = (
+/obj/structure/mirror,
+/turf/closed/wall/almayer,
+/area/almayer/living/gym)
+"sGZ" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/airoom)
+"sHg" = (
+/obj/structure/surface/rack,
+/obj/item/storage/backpack/marine/satchel{
+ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
+ icon = 'icons/obj/janitor.dmi';
+ icon_state = "trashbag3";
+ name = "trash bag";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/marine/satchel{
+ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
+ icon = 'icons/obj/janitor.dmi';
+ icon_state = "trashbag3";
+ name = "trash bag";
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"sHo" = (
+/obj/structure/pipes/unary/outlet_injector{
+ dir = 8;
+ name = "Mixed Air Injector"
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/engine,
+/area/almayer/engineering/airmix)
+"sHp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/largecrate/random/case/small,
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"sHM" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/pilotbunks)
+"sHY" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"sIf" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"sIk" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"sIw" = (
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"sIx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"sIA" = (
+/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
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/engineering/port_atmos)
+"sIT" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/hull/lower_hull/l_f_s)
+"sIU" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"sIV" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"sIY" = (
+/obj/structure/machinery/brig_cell/perma_1{
+ pixel_x = -32;
+ pixel_y = 4
+ },
+/obj/structure/machinery/door_control{
+ id = "Perma 1L";
+ name = "Perma 1 Lockdown";
+ pixel_x = -24;
+ pixel_y = -12;
+ req_access_txt = "3"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/perma)
+"sJC" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"sJI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"sJY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"sKa" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"sKY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8;
+ layer = 3.25
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"sLo" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"sLE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"sMs" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"sMM" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"sNb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"sNz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"sNI" = (
+/obj/structure/bed/chair/comfy/delta,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"sNO" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3"
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"sNR" = (
+/turf/closed/wall/almayer/research/containment/wall/corner,
+/area/almayer/medical/containment/cell/cl)
+"sOi" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"sOm" = (
+/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/almayer/hallways/starboard_hallway)
+"sOt" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"sOw" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/basketball)
+"sOx" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/suit/storage/hazardvest/yellow,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"sOy" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"sOZ" = (
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/ammo_magazine/pistol,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/item/weapon/gun/pistol/m4a3,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/sign/safety/ammunition{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/medical/upper_medical)
+"sPc" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"sPA" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"sPJ" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"sQF" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"sQL" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"sQO" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"sQS" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/stamp{
+ pixel_x = 3;
+ pixel_y = 10
+ },
+/obj/item/device/taperecorder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"sQU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"sRI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wirecutters/clippers,
+/obj/item/handcuffs/zip,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"sRP" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "80"
+ },
+/area/almayer/hallways/hangar)
+"sSa" = (
+/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
+ dir = 2;
+ no_panel = 1;
+ not_weldable = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"sSc" = (
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/shipboard/weapon_room)
+"sSe" = (
+/obj/structure/sign/poster/blacklight{
+ pixel_y = 35
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/beerkeg/alt_dark{
+ anchored = 1;
+ chemical = null;
+ density = 0;
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"sSl" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"sSm" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"sSC" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"sSR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/aft_hallway)
+"sSY" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/port_umbilical)
+"sTd" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"sTm" = (
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"sTo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"sTw" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"sTB" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"sTV" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"sUg" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"sUj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/squads/delta)
+"sUs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"sUE" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"sUF" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"sUO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"sVc" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/orangeseed,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"sVf" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"sVi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"sVy" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cryo)
+"sWW" = (
+/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/almayer/medical/containment/cell)
+"sXd" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/containment)
+"sXs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ layer = 3.1;
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"sXt" = (
+/obj/structure/machinery/cm_vending/clothing/tl/alpha{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"sXB" = (
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"sXE" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Auxiliary Support Officer's Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"sXK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"sXQ" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/appleseed,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"sXV" = (
+/obj/structure/machinery/recharge_station,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"sYh" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"sYw" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform,
+/obj/structure/platform_decoration{
+ dir = 10;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"sYB" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"sYC" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"sYD" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 16;
+ pixel_y = 30
+ },
+/obj/structure/sign/safety/debark_lounge{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"sYP" = (
+/obj/structure/reagent_dispensers/fueltank/custom,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"sYT" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "CMO Shutters";
+ name = "\improper CMO Office Shutters"
+ },
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/medical/upper_medical)
+"sZq" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"sZy" = (
+/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{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"sZF" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"sZH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/bronze{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/trash/semki{
+ layer = 2;
+ pixel_x = -13;
+ pixel_y = 14
+ },
+/obj/item/prop/magazine/boots/n054{
+ pixel_x = 29
+ },
+/obj/item/prop/magazine/dirty/torn{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/disco_fever{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"tab" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/box/flashbangs{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/handcuffs,
+/obj/item/storage/firstaid/regular,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"tak" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tal" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"tat" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"taA" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"taH" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment/cell)
+"tbD" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "AftPortMaint"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/upper_hull/u_a_p)
+"tbK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"tce" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"tcP" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "perma_lockdown";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ name = "\improper Perma Cells"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
+"tda" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/security{
+ access_modified = 1;
+ dir = 2;
+ name = "\improper Security Checkpoint";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/briefing)
+"tdc" = (
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"tdv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tdx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/engine_core)
+"tdE" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"tdI" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"tdK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_umbilical)
+"tdT" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"teg" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"teo" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"teu" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/weapon/gun/shotgun/pump{
+ starting_attachment_types = list(/obj/item/attachable/stock/shotgun)
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"tez" = (
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/almayer,
+/area/almayer/living/cryo_cells)
+"teB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"teH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/maint{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"teY" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/prop/almayer/computers/sensor_computer2,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"tfb" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"tfl" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"tfw" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"tfH" = (
+/obj/structure/machinery/light/containment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"tfO" = (
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/obj/item/storage/box/nade_box/tear_gas,
+/obj/item/storage/box/nade_box/tear_gas{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"tgK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"tgS" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"tgV" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"thv" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/telecomms)
+"thA" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"thL" = (
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"thN" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/hydroponics)
+"thP" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"thT" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"thV" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tig" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
+ pixel_x = 14;
+ pixel_y = 20
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha)
+"tim" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tit" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"tiw" = (
+/obj/structure/machinery/constructable_frame{
+ icon_state = "box_2"
+ },
+/obj/item/weapon/baseballbat/metal{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"tiE" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"tiI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/syringes,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"tiK" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tiM" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"tiR" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "7;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/weapon_room)
+"tiW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"tjj" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tjl" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"tjn" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"tjw" = (
+/obj/structure/machinery/cm_vending/clothing/vehicle_crew{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/tankerbunks)
+"tjU" = (
+/obj/structure/bed/chair/wood/normal,
+/obj/item/bedsheet/brown,
+/obj/item/toy/farwadoll,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"tki" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"tkq" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/weapon_room)
+"tkN" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "15;16;21";
+ vend_x_offset = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"tkV" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"tld" = (
+/obj/structure/machinery/prop/almayer/computer{
+ dir = 8;
+ pixel_x = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/pilotbunks)
+"tly" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"tlA" = (
+/obj/effect/decal/medical_decals{
+ icon_state = "docdecal2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"tlI" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/surface/table/almayer,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"tmg" = (
+/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{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"tmy" = (
+/obj/structure/surface/table/almayer,
+/obj/item/handcuffs{
+ pixel_y = 12
+ },
+/obj/item/handcuffs{
+ pixel_y = 6
+ },
+/obj/item/handcuffs,
+/obj/item/weapon/baton{
+ pixel_x = -12
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tmA" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"tmB" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"tmI" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"tmK" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ req_one_access = null;
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"tnb" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
+"tng" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"tni" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_three)
+"tnl" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/north{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"tnm" = (
+/obj/structure/machinery/atm{
+ name = "Weyland-Yutani Automatic Teller Machine";
+ pixel_y = 30
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/storage/fancy/cigar,
+/turf/open/floor/almayer,
+/area/almayer/command/corporateliason)
+"tnY" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"tou" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"tov" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"toE" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"tpa" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/medical/hydroponics)
+"tpd" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"tpg" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"tpn" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/evidence_storage)
+"tps" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"tpu" = (
+/obj/item/device/radio/intercom/normandy{
+ pixel_y = 24
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin5"
+ },
+/area/almayer/hallways/hangar)
+"tpD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/bridgebunks)
+"tpK" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/effect/spawner/random/toolbox,
+/obj/item/stack/sheet/metal{
+ desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew.";
+ icon = 'icons/obj/structures/props/semiotic_standard.dmi';
+ icon_state = "coffee";
+ name = "coffee semiotic";
+ pixel_x = 20;
+ pixel_y = 12;
+ singular_name = "coffee semiotic"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"tqe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"tqg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/door_control{
+ id = "DeployWorkR";
+ name = "Workshop Shutters";
+ pixel_x = -7;
+ pixel_y = -26;
+ req_one_access_txt = "3;22;2;19;7"
+ },
+/obj/structure/surface/rack,
+/obj/item/rappel_harness{
+ pixel_y = 8
+ },
+/obj/item/rappel_harness,
+/obj/item/rappel_harness{
+ pixel_y = -6
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/hallways/repair_bay)
+"tqk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"tqB" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"tqV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"trb" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/lifeboat_pumps/south1)
+"trB" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"trD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"trF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/adv{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
+"trW" = (
+/obj/item/stack/tile/carpet{
+ amount = 20
+ },
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"tsa" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/suit/chef/classic,
+/obj/item/tool/kitchen/knife/butcher,
+/obj/item/clothing/suit/chef/classic,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"tst" = (
+/obj/structure/machinery/cryopod/right,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tsv" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"tsy" = (
+/obj/structure/filingcabinet{
+ pixel_x = 8
+ },
+/obj/structure/filingcabinet{
+ pixel_x = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"tsC" = (
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/poster{
+ icon_state = "poster8";
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"tsH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"tsM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"tsX" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/lobby)
+"ttd" = (
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tte" = (
+/obj/structure/pipes/vents/pump/no_boom{
+ welded = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/powered/agent)
+"ttM" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"ttS" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"tuf" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"tuo" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"tuA" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/port_missiles)
+"tuN" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"tuZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/weapon_room)
+"tvw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"tvA" = (
+/obj/structure/machinery/sleep_console{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"tvM" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"tvN" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/delta)
+"tvQ" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"twq" = (
+/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{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"twz" = (
+/obj/structure/shuttle/part/dropship2/transparent/middle_left_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"twB" = (
+/obj/structure/prop/almayer/name_stencil{
+ icon_state = "almayer2"
+ },
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"twT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"twW" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/item/tool/warning_cone{
+ pixel_x = -21;
+ pixel_y = 3
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"txe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"txi" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"txO" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 4
+ },
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"tyb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"tyz" = (
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"tyD" = (
+/turf/open/floor/almayer/research/containment/corner_var1{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell)
+"tyK" = (
+/obj/effect/spawner/random/toolbox,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"tzf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"tzi" = (
+/obj/structure/flora/pottedplant{
+ desc = "Life is underwhelming, especially when you're a potted plant.";
+ icon_state = "pottedplant_22";
+ name = "Jerry";
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/sunglasses/prescription{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"tzj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"tzx" = (
+/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/almayer/medical/lockerroom)
+"tzz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"tzL" = (
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/medical/hydroponics)
+"tzP" = (
+/obj/structure/barricade/handrail/medical,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"tAh" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tAi" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"tAq" = (
+/obj/structure/surface/table/reinforced/black,
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -5
+ },
+/obj/item/clothing/head/helmet/space/compression/uscm,
+/obj/item/cell/crap{
+ pixel_x = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tAL" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/pilotbunks)
+"tAN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"tAR" = (
+/obj/effect/spawner/random/toolbox,
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"tAU" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"tAV" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"tBq" = (
+/obj/item/tool/crowbar,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"tBz" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"tBF" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"tBL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"tBP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"tCb" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/device/radio,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"tCN" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"tCT" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"tDx" = (
+/obj/item/tool/wet_sign,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"tDA" = (
+/obj/item/tool/weldpack{
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"tDZ" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"tEi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/door_control{
+ dir = 1;
+ id = "Research Armory";
+ name = "Research Armory";
+ pixel_x = 27;
+ req_one_access_txt = "4;28"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"tEB" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"tEO" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/charlie)
+"tFe" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES StairsUpper";
+ name = "\improper ARES Core Shutters";
+ plane = -7
+ },
+/obj/structure/machinery/door/poddoor/almayer/blended/open{
+ id = "ARES Emergency";
+ name = "ARES Emergency Lockdown";
+ open_layer = 1.9;
+ plane = -7
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"tFv" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/general_equipment)
+"tFS" = (
+/obj/structure/machinery/computer/supplycomp,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"tFW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"tGd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_20"
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tGf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"tGg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tGh" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"tGi" = (
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"tGq" = (
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"tGG" = (
+/obj/structure/bed/chair/comfy/alpha{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/briefing)
+"tGO" = (
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"tHh" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"tHr" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/item/pizzabox/mushroom{
+ pixel_y = 11
+ },
+/obj/item/poster,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"tHu" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/command/airoom)
+"tHv" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/living/briefing)
+"tHB" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -30
+ },
+/obj/structure/machinery/recharger{
+ layer = 3.1;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tHS" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/cells)
+"tIp" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Dorms"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/port_emb)
+"tIK" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = 4
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"tIQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"tIS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"tIU" = (
+/obj/structure/platform,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"tJi" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"tJo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"tJp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/crowbar/red,
+/obj/item/clipboard{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/item/storage/box/handcuffs{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tJy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"tJz" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"tJR" = (
+/obj/structure/machinery/vending/cigarette,
+/obj/structure/sign/safety/medical{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"tJV" = (
+/obj/structure/machinery/vending/hydronutrients,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"tKf" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
+"tKn" = (
+/obj/effect/attach_point/electronics/dropship2{
+ dir = 1
+ },
+/obj/structure/shuttle/part/dropship2/transparent/inner_left_weapons,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"tKr" = (
+/obj/structure/machinery/cryopod/right{
+ dir = 2
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/bridgebunks)
+"tLc" = (
+/obj/structure/surface/rack,
+/obj/item/storage/bag/plants{
+ pixel_x = -3
+ },
+/obj/item/storage/bag/plants{
+ pixel_x = 3
+ },
+/obj/item/storage/bag/plants{
+ pixel_y = -3
+ },
+/obj/item/tool/scythe,
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"tLy" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/engine_core)
+"tLM" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"tMa" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "27"
+ },
+/area/almayer/hallways/hangar)
+"tMf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -15
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"tMn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair/comfy/beige,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"tMW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"tNj" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/sentencing{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"tNF" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "CMP Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/chief_mp_office)
+"tNP" = (
+/obj/structure/sign/safety/debark_lounge{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tNR" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha)
+"tNT" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"tOd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"tOr" = (
+/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{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/hydroponics)
+"tOC" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"tOW" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"tPj" = (
+/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
+ access_modified = 1;
+ name = "\improper Requisition's Office";
+ req_one_access = null;
+ req_one_access_txt = "1;26"
+ },
+/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,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"tPI" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"tQd" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"tQo" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddersoutheast";
+ name = "\improper South East Ladders Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"tQE" = (
+/obj/item/clothing/head/welding,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"tQL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"tQV" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/lifeboat_pumps/south1)
+"tRc" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/item/bedsheet/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"tRd" = (
+/obj/structure/shuttle/part/dropship2/bottom_left_wall,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"tRA" = (
+/obj/structure/bed/chair,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"tRD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/basketball)
+"tRT" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "76"
+ },
+/area/almayer/hallways/hangar)
+"tRV" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"tRX" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"tSc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"tSp" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/obj/structure/kitchenspike,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"tSr" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"tSw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/stern_hallway)
+"tSB" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/living/briefing)
+"tTp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/sriracha{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"tTu" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"tTD" = (
+/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/sign/safety/coffee{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/captain_mess)
+"tUh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/req)
+"tUo" = (
+/obj/item/clipboard,
+/obj/structure/surface/table/reinforced/black,
+/obj/item/tool/pen,
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"tUx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"tUI" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"tUS" = (
+/obj/item/toy/beach_ball/holoball,
+/obj/structure/holohoop{
+ density = 0;
+ pixel_y = 29
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"tVf" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"tVh" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/bridgebunks)
+"tVq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha)
+"tVB" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"tWg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"tWi" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/port)
+"tWY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "CMO Shutters";
+ name = "\improper CMO Office Shutters"
+ },
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ access_modified = 1;
+ name = "\improper CMO's Office";
+ req_one_access = null;
+ req_one_access_txt = "1;5"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"tXb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair/comfy/charlie{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"tXi" = (
+/obj/structure/machinery/conveyor_switch{
+ id = "gym_2";
+ name = "treadmill switch"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"tXj" = (
+/obj/structure/closet/coffin/woodencrate,
+/obj/item/storage/box/m94,
+/obj/item/storage/box/m94,
+/obj/item/storage/box/m94,
+/obj/item/stack/sheet/mineral/plastic/small_stack,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"tXs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/cryo)
+"tXM" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/sea_office)
+"tXT" = (
+/obj/item/bedsheet/blue{
+ layer = 3.2
+ },
+/obj/item/bedsheet/blue{
+ pixel_y = 13
+ },
+/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
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"tXW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"tYi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"tYw" = (
+/obj/effect/decal/medical_decals{
+ icon_state = "triagedecalbottomleft";
+ pixel_x = 20
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = 28
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"tYB" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"tYW" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/crew/alt,
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Brig Cells Telephone";
+ phone_category = "Almayer";
+ phone_id = "Brig Cells";
+ pixel_x = 15
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"tYX" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/bridgebunks)
+"tZc" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"tZe" = (
+/obj/item/trash/USCMtray{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/utensil/pfork{
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"tZm" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza."
+ },
+/obj/item/storage/beer_pack,
+/obj/item/reagent_container/food/drinks/cans/beer,
+/obj/item/reagent_container/food/drinks/cans/beer,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"tZB" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"tZF" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"tZP" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"tZZ" = (
+/obj/structure/machinery/cryopod,
+/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{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uaa" = (
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_m_p)
+"uac" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"uah" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/medical_pod/sleeper,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"ual" = (
+/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/almayer/medical/containment/cell)
+"uay" = (
+/obj/structure/machinery/iv_drip,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"uaI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/processor{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"uaU" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ layer = 3.1;
+ pixel_y = 11
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"uaV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"uaZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/m41a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"ubd" = (
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"ubA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"ucp" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering/starboard)
+"ucw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"udi" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"udr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"udx" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"udF" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"udG" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"udK" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/safety/coffee{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"udV" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"udZ" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"ued" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Exterior Airlock";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/port_point_defense)
+"ueh" = (
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"ueo" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "Evidence Room"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"ueG" = (
+/obj/item/bedsheet/orange,
+/obj/structure/bed{
+ icon_state = "psychbed"
+ },
+/obj/structure/machinery/cm_vending/clothing/senior_officer{
+ density = 0;
+ pixel_y = 30;
+ req_access = list();
+ req_access_txt = "6"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"ueJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"ueZ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha)
+"ufh" = (
+/obj/structure/stairs/perspective{
+ dir = 8;
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"ufp" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"ufx" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"ufJ" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"ugs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/marine_law{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = -17;
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17;
+ pixel_y = -9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"ugu" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"ugJ" = (
+/obj/structure/largecrate/random/case/small,
+/obj/structure/largecrate/random/mini/small_case{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"ugT" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ugV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/tray,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/toy/deck{
+ pixel_x = -9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"uhg" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "89"
+ },
+/area/almayer/hallways/hangar)
+"uhl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"uhM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"uhP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"uia" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"uig" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uim" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"uiG" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"uiR" = (
+/obj/structure/prop/invuln{
+ desc = "An inflated membrane. This one is puncture proof. Wow!";
+ icon = 'icons/obj/items/inflatable.dmi';
+ icon_state = "wall";
+ name = "umbilical wall"
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer_hull{
+ dir = 8;
+ icon_state = "outerhull_dir"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"uiT" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"uiZ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{
+ dir = 1;
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cichallway)
+"ujz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"ujA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_m_p)
+"ujV" = (
+/obj/structure/machinery/vending/dinnerware,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"ukh" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"ukt" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"uku" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/turf/open/floor/plating,
+/area/almayer/engineering/engineering_workshop/hangar)
+"ukA" = (
+/obj/structure/platform,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"ukS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"ukU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"ukV" = (
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"ula" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "Evidence Room"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"uli" = (
+/turf/open/floor/grass,
+/area/almayer/living/starboard_garden)
+"uly" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
+"ulZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"umh" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"umm" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/small,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/powered/agent)
+"umv" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 8;
+ req_one_access = list(2,34,30)
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"umy" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"umC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"umR" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"umS" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"umT" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"umY" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"unh" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/obj/item/tool/screwdriver,
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"uns" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/carrotseed,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"unJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"unT" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/crowbar,
+/obj/item/clothing/head/headset{
+ pixel_y = -7
+ },
+/obj/item/storage/bible,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"unU" = (
+/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/almayer/medical/lower_medical_medbay)
+"uoi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"uoA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/starboard_point_defense)
+"uoH" = (
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"uoS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"uoY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"upe" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"upt" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"upM" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/upper_medical)
+"upO" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/living/offices)
+"upR" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 7;
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uqa" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"uqd" = (
+/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/almayer/medical/containment)
+"uqo" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/armory)
+"uqA" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"uqB" = (
+/obj/structure/machinery/firealarm{
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4;
+ layer = 3.25
+ },
+/obj/structure/phone_base{
+ name = "CE Office Telephone";
+ phone_category = "Offices";
+ phone_id = "CE Office";
+ pixel_x = -8;
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/ce_room)
+"uqH" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"uqI" = (
+/obj/structure/machinery/light{
+ pixel_x = 16
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"urM" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/upper_engineering)
+"ush" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"usi" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"usm" = (
+/obj/structure/machinery/light,
+/obj/structure/sign/safety/waterhazard{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"uso" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"usr" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"usw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/engine_core)
+"usy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"usX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"uto" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/plasteel{
+ amount = 30;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/upper_engineering)
+"utx" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"utK" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"utX" = (
+/turf/closed/wall/almayer/research/containment/wall/connect_e2{
+ icon_state = "containment_wall_connect_e"
+ },
+/area/almayer/medical/containment/cell)
+"utZ" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"uue" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ dir = 1;
+ name = "\improper Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cryo)
+"uuj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 5
+ },
+/obj/item/reagent_container/food/condiment/hotsauce/cholula{
+ pixel_x = -8;
+ pixel_y = 22
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"uuq" = (
+/obj/structure/bed,
+/obj/structure/machinery/flasher{
+ id = "Cell 4";
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cells)
+"uuu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ layer = 2.7;
+ pixel_y = 2
+ },
+/obj/structure/largecrate/random/case,
+/obj/effect/spawner/prop_gun/m41aMK1{
+ pixel_y = 7
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_x = -10;
+ pixel_y = 1
+ },
+/obj/item/tool/screwdriver{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"uux" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Evacuation Airlock SU-1";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/powered)
+"uuR" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"uvk" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"uvs" = (
+/obj/structure/machinery/conveyor{
+ id = "lower_garbage"
+ },
+/obj/structure/machinery/recycler,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"uvt" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/bridgebunks)
+"uvu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
+"uvy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"uvG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"uvP" = (
+/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/almayer/medical/containment/cell)
+"uvS" = (
+/obj/structure/surface/rack,
+/obj/item/stack/cable_coil,
+/obj/item/attachable/flashlight/grip,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"uvY" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/cells)
+"uvZ" = (
+/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 = 1;
+ pixel_y = 16
+ },
+/obj/item/reagent_container/food/drinks/bottle/whiskey{
+ pixel_x = 9;
+ pixel_y = 16
+ },
+/obj/item/reagent_container/food/drinks/bottle/whiskey{
+ pixel_x = -7;
+ pixel_y = 16
+ },
+/obj/item/clothing/mask/cigarette/pipe{
+ pixel_y = 5
+ },
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"uws" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/shipboard/port_missiles)
+"uwv" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/weapon_room/notunnel)
+"uwN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"uwZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"uxa" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/cells)
+"uxp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"uxC" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"uxO" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal8";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal7";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal6";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -16;
+ pixel_y = 16
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"uxZ" = (
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"uys" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/squads/req)
+"uyC" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/lifeboat_pumps/south2)
+"uyH" = (
+/turf/closed/wall/almayer/research/containment/wall/divide,
+/area/almayer/medical/containment/cell)
+"uyJ" = (
+/obj/structure/machinery/cm_vending/sorted/medical/chemistry,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"uzg" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"uzm" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"uzx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cryo)
+"uzy" = (
+/obj/item/reagent_container/glass/bucket,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"uzE" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/ce_room)
+"uzP" = (
+/obj/item/bedsheet/blue{
+ layer = 3.2
+ },
+/obj/item/bedsheet/blue{
+ pixel_y = 13
+ },
+/obj/item/toy/farwadoll{
+ desc = "A USCM approved plush doll. It's not soft and hardly comforting!";
+ force = 15;
+ icon_state = "therapyred";
+ layer = 4.1;
+ name = "Sergeant Huggs";
+ pixel_y = 15;
+ throwforce = 15
+ },
+/obj/item/clothing/head/cmcap{
+ layer = 4.1;
+ pixel_x = -1;
+ pixel_y = 22
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"uzU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/bronze{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_x = 10;
+ pixel_y = 15
+ },
+/obj/item/clothing/mask/cigarette{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/cigarette{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/main_office)
+"uAb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"uAj" = (
+/obj/structure/bed/chair,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"uAs" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uAC" = (
+/obj/item/bedsheet/purple{
+ layer = 3.2
+ },
+/obj/item/bedsheet/purple{
+ pixel_y = 13
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"uAW" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"uBi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"uBn" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/vehiclehangar)
+"uBw" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/starboard_hallway)
+"uBz" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/stern_hallway)
+"uBM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/combat_correspondent)
+"uBN" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"uBO" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -3
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"uCh" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"uCl" = (
+/obj/structure/closet/secure_closet/surgical{
+ pixel_x = -30
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/surgery)
+"uCM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"uCW" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cichallway)
+"uDn" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "bridge2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/navigation)
+"uDp" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"uDA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lockerroom)
+"uDB" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uDW" = (
+/obj/structure/machinery/cm_vending/clothing/tl/delta{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"uEc" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/engine_core)
+"uEv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"uEK" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/phone_base{
+ dir = 1;
+ name = "Brig Warden's Office Telephone";
+ phone_category = "Offices";
+ phone_id = "Brig Warden's Office";
+ pixel_x = -16
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"uFd" = (
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"uFo" = (
+/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/almayer/medical/lockerroom)
+"uFp" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"uFt" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"uFH" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"uFL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"uFM" = (
+/obj/structure/machinery/camera/autoname/almayer/dropship_two{
+ dir = 8;
+ pixel_x = 16
+ },
+/obj/structure/bed/chair/vehicle{
+ pixel_x = 8
+ },
+/obj/structure/bed/chair/vehicle{
+ pixel_x = -8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"uFP" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/port_hallway)
+"uGa" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"uGc" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/suit_storage{
+ pixel_x = 32
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uGo" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"uGt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"uGw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"uGz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"uGQ" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"uId" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"uIp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"uIv" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uII" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
+"uIJ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"uIT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"uJk" = (
+/obj/structure/prop/almayer/name_stencil{
+ icon_state = "almayer4"
+ },
+/turf/open/floor/almayer_hull{
+ icon_state = "outerhull_dir"
+ },
+/area/space)
+"uJl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/pizzabox/meat,
+/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uJo" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uJs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/main_office)
+"uJB" = (
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uJU" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"uKd" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/communications{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"uKe" = (
+/obj/structure/machinery/conveyor{
+ dir = 8;
+ id = "gym_2";
+ name = "treadmill"
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"uKk" = (
+/obj/structure/surface/table/almayer,
+/obj/item/circuitboard/airlock,
+/obj/item/circuitboard/airlock{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"uKv" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/multitool{
+ desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas.";
+ icon_state = "multitool_big";
+ name = "\improper Oversized Security Access Tuner";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"uKA" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"uKV" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/food_storage{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"uLn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_point_defense)
+"uLu" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/stern_hallway)
+"uLv" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/manualopenclose{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"uLJ" = (
+/obj/structure/machinery/light{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = -7
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/execution)
+"uLN" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"uLW" = (
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/item/reagent_container/glass/bucket,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"uMc" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering/starboard)
+"uMj" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/port_missiles)
+"uMk" = (
+/obj/structure/bed/chair/comfy/delta{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"uMl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/squads/alpha)
+"uMn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"uMS" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"uNe" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"uNg" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/bridgebunks)
+"uNl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"uNB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"uNF" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"uNL" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_f_s)
+"uNM" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/living/briefing)
+"uNN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"uNV" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"uNW" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"uOc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"uOi" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/lifeboat_pumps/south2)
+"uOJ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"uPd" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"uPr" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"uPI" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"uPW" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"uQm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"uQn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"uQo" = (
+/obj/structure/machinery/disposal,
+/obj/item/reagent_container/food/drinks/cans/beer{
+ layer = 3.3;
+ pixel_x = -4;
+ pixel_y = 15
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"uQU" = (
+/obj/structure/stairs{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/port_hallway)
+"uRo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha)
+"uRr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/closet/secure_closet/engineering_materials,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"uRt" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"uRG" = (
+/obj/structure/blocker/invisible_wall,
+/obj/structure/machinery/computer/cameras/dropship/two,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"uRM" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/red{
+ layer = 3.2
+ },
+/obj/item/bedsheet/medical{
+ pixel_y = 12
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"uRQ" = (
+/obj/item/storage/firstaid/fire,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"uSq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"uSH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door_control{
+ id = "CIC Lockdown";
+ name = "CIC Lockdown";
+ pixel_x = -7;
+ pixel_y = 9;
+ req_access_txt = "1"
+ },
+/obj/structure/machinery/door_control{
+ id = "Hangar Lockdown";
+ name = "Hangar Lockdown";
+ pixel_x = -7;
+ pixel_y = 2;
+ req_access_txt = "1"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4;
+ icon_state = "exposed01-supply"
+ },
+/obj/structure/machinery/door_control{
+ id = "bot_armory";
+ name = "Armory Lockdown";
+ pixel_x = -7;
+ pixel_y = -5;
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Combat Information Center Telephone";
+ phone_category = "Command";
+ phone_id = "Combat Information Center";
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/structure/machinery/door/window/westright{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"uSL" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"uSS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/lockerroom)
+"uTv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"uTN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"uTU" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ layer = 2.2;
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
+"uTY" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"uTZ" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uUe" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/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 = "cargo"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uUi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"uUo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"uUs" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/perma)
+"uUt" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/technology_scanner,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/starboard_point_defense)
+"uUz" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ density = 0;
+ dir = 4;
+ id = "engidorm";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering/port)
+"uUO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/door_control{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutters";
+ pixel_x = 16;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/recharger,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"uUV" = (
+/obj/structure/machinery/shower,
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/machinery/door/window/tinted{
+ dir = 2
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"uVb" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"uVd" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"uVh" = (
+/obj/structure/filingcabinet/seeds,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"uVv" = (
+/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"uVA" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"uVD" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/living/cryo_cells)
+"uVF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/perma)
+"uVR" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"uVX" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/pilotbunks)
+"uWc" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"uWC" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/stern_hallway)
+"uWI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/plastic,
+/obj/item/trash/cigbutt{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{
+ pixel_x = -9;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"uWV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"uWY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"uXf" = (
+/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/almayer/medical/lower_medical_medbay)
+"uXj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell)
+"uXu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"uXL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/power/smes/buildable,
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"uYa" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"uYg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"uZo" = (
+/obj/structure/bed/stool,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"uZH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"uZQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/hallways/repair_bay)
+"uZY" = (
+/obj/structure/closet/secure_closet/guncabinet/riot_control,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"uZZ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Basketball Court"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/basketball)
+"vak" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hallways/starboard_umbilical)
+"vbf" = (
+/obj/structure/machinery/landinglight/ds2/delaytwo{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"vbB" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"vbI" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "37"
+ },
+/area/almayer/hallways/hangar)
+"vbM" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"vbS" = (
+/obj/structure/closet/secure_closet/personal/patient{
+ name = "morgue closet"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"vbV" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 1
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"vce" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_m_p)
+"vcq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"vcE" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"vcG" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger,
+/obj/item/device/flash,
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"vcJ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base{
+ dir = 4;
+ name = "Port Railgun Control Telephone";
+ phone_category = "Command";
+ phone_id = "Port Railgun Control";
+ pixel_x = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
+"vcK" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"vdJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/pipe{
+ dir = 9
+ },
+/obj/item/tool/screwdriver{
+ layer = 3.6;
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/item/tool/crowbar/red{
+ pixel_x = 17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"vdL" = (
+/obj/structure/sign/safety/reception{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"vdM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"vdO" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/machinery/cryo_cell{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"vdW" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"ven" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"veu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"vez" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"vfa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"vfe" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "56"
+ },
+/area/almayer/hallways/hangar)
+"vfo" = (
+/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)
+"vfv" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/machinery/power/apc{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"vfx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"vfB" = (
+/turf/open/floor/almayer/no_build{
+ dir = 4
+ },
+/area/almayer/command/airoom)
+"vfJ" = (
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"vfP" = (
+/turf/open/floor/almayer/research/containment/corner{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"vgk" = (
+/obj/structure/closet/firecloset,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/port_hallway)
+"vgx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/research,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/hydroponics)
+"vgB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/autoinjectors{
+ pixel_x = -6;
+ pixel_y = -1
+ },
+/obj/item/device/mass_spectrometer{
+ pixel_x = 8
+ },
+/obj/item/storage/box/pillbottles{
+ pixel_x = -6;
+ pixel_y = 9
+ },
+/obj/item/reagent_container/glass/beaker/cryoxadone{
+ pixel_x = 8;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"vgC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "hangarentrancenorth";
+ name = "North Hangar Podlocks";
+ pixel_y = -26;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/starboard_hallway)
+"vgD" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
+"vgF" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"vgO" = (
+/turf/closed/wall/almayer/research/containment/wall/east,
+/area/almayer/medical/containment/cell)
+"vgQ" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"vhe" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/obj/item/folder/white,
+/obj/item/folder/white,
+/obj/item/folder/white,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"vhq" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"vht" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"vhw" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/machinery/disposal,
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"vhI" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"vhR" = (
+/obj/structure/flora/pottedplant{
+ desc = "It is made of Fiberbush(tm). It contains asbestos.";
+ icon_state = "pottedplant_22";
+ name = "synthetic potted plant";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"vhX" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/lower_medical_medbay)
+"vhY" = (
+/obj/structure/sign/goldenplaque,
+/turf/closed/wall/almayer,
+/area/almayer/living/gym)
+"vif" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/chapel)
+"vih" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/fancy/candle_box,
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"vil" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"vim" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"vit" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/operating_room_four)
+"viu" = (
+/obj/structure/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"viB" = (
+/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk{
+ allow_construction = 0
+ },
+/area/almayer/command/airoom)
+"viJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/gym)
+"viN" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/command/securestorage)
+"viO" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 5
+ },
+/area/almayer/living/briefing)
+"vjb" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"vjg" = (
+/obj/structure/prop/almayer/missile_tube{
+ icon_state = "missiletubesouth"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/port_missiles)
+"vjx" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"vjC" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/machinery/disposal,
+/obj/item/reagent_container/food/drinks/coffeecup/wy{
+ desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it.";
+ name = "dip cup";
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"vjD" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"vjK" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"vka" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"vkb" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "officers_mess";
+ name = "Privacy Shutters";
+ pixel_y = -19
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"vkp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"vkD" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"vkM" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ dir = 1;
+ name = "\improper Brig Equipment"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"vkR" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/structure/bed/sofa/south/grey,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"vli" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/surface/rack,
+/obj/item/stack/sheet/glass/reinforced{
+ amount = 50
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/shipboard/brig/processing)
+"vln" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"vly" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/CICmap,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/port_missiles)
+"vlR" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"vlX" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"vma" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/almayer/hallways/hangar)
+"vme" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"vml" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
+/obj/structure/sign/safety/storage{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"vmK" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"vmN" = (
+/obj/structure/machinery/light,
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"vmW" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/port_missiles)
+"vnD" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"vnV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"vnY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"vot" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"vox" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"voA" = (
+/obj/structure/platform_decoration,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"voQ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"vpn" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"vpt" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = 27;
+ serial_number = 11
+ },
+/obj/item/stack/folding_barricade,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"vpV" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "emerald"
+ },
+/area/almayer/command/cic)
+"vpW" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"vqC" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"vqD" = (
+/obj/item/trash/candle,
+/obj/item/tool/match/paper,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"vqK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"vqL" = (
+/obj/item/clothing/under/shorts/black,
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"vqO" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"vqW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"vqZ" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/biolab{
+ pixel_x = -9;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/biohazard{
+ pixel_x = 25;
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80;
+ pixel_y = 6
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/medical_science)
+"vra" = (
+/turf/closed/wall/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"vrx" = (
+/obj/structure/machinery/status_display{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"vrB" = (
+/obj/structure/closet/crate{
+ desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service.";
+ name = "special operations crate"
+ },
+/obj/item/clothing/mask/gas/swat,
+/obj/item/clothing/mask/gas/swat,
+/obj/item/clothing/mask/gas/swat,
+/obj/item/clothing/mask/gas/swat,
+/obj/item/attachable/suppressor,
+/obj/item/attachable/suppressor,
+/obj/item/attachable/suppressor,
+/obj/item/attachable/suppressor,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"vrI" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -18
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"vrM" = (
+/obj/structure/closet/secure_closet{
+ name = "secure evidence locker";
+ req_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"vrQ" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "perma_exit";
+ name = "\improper Exit Shutters"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "perma_lockdown";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
+"vrW" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/briefing)
+"vse" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"vsh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"vsF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"vsI" = (
+/obj/structure/closet/secure_closet/guncabinet/riot_control,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"vsJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Power Control Room";
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "3;6"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
+"vsV" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"vta" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"vti" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"vtm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/medical_science)
+"vtr" = (
+/obj/structure/machinery/mech_bay_recharge_port,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"vtx" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"vtB" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddersoutheast";
+ name = "\improper South East Ladders Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/port_hallway)
+"vtT" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"vub" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/sea_office)
+"vuv" = (
+/turf/closed/wall/almayer,
+/area/almayer/hull/upper_hull/u_a_p)
+"vuA" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/briefing)
+"vuF" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Kitchen Hydroponics";
+ req_one_access_txt = "30;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/grunt_rnr)
+"vuG" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"vuL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"vuR" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"vuZ" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/weapon_room)
+"vvp" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/sign/safety/intercom{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"vvy" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/suit_storage{
+ pixel_x = 32
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"vvY" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_x = 26
+ },
+/obj/structure/bedsheetbin{
+ pixel_x = 26;
+ pixel_y = 5
+ },
+/obj/item/tool/soap/syndie,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"vwF" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"vwI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/microwave{
+ pixel_y = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"vwN" = (
+/obj/item/clothing/gloves/botanic_leather{
+ name = "leather gloves"
+ },
+/obj/item/clothing/gloves/botanic_leather{
+ name = "leather gloves"
+ },
+/obj/item/clothing/gloves/botanic_leather{
+ name = "leather gloves"
+ },
+/obj/structure/closet/crate,
+/obj/item/clothing/suit/storage/hazardvest/black,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"vwO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/general_equipment)
+"vwP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = -7;
+ pixel_y = 9
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = 9
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = -9;
+ pixel_y = -4
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_y = -2
+ },
+/obj/item/reagent_container/pill/happy,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/repair_bay)
+"vwV" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/command/cic)
+"vxb" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"vxC" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"vxM" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/cryo)
+"vxX" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/tool/wrench{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/obj/item/storage/bible{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/item/storage/bible{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"vyg" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"vyi" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/processing)
+"vyp" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"vyu" = (
+/obj/structure/bed/sofa/south/white/right,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"vyE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/lobby)
+"vyI" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"vyU" = (
+/obj/structure/bed/chair/comfy/charlie,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"vzl" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"vzp" = (
+/turf/open/floor/almayer/research/containment/entrance,
+/area/almayer/medical/containment/cell/cl)
+"vzq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"vzu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"vzz" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Hydroponics Garden"
+ },
+/turf/open/floor/almayer{
+ icon_state = "greenfull"
+ },
+/area/almayer/shipboard/brig/cells)
+"vzK" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/ce_room)
+"vzP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/cups,
+/obj/item/tool/kitchen/utensil/spoon,
+/obj/item/tool/kitchen/utensil/spoon,
+/obj/item/tool/kitchen/utensil/spoon,
+/obj/item/tool/kitchen/utensil/fork,
+/obj/item/tool/kitchen/utensil/fork,
+/obj/item/tool/kitchen/utensil/fork,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "kitchen";
+ name = "\improper Kitchen Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"vAq" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/hangar)
+"vAE" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"vAG" = (
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"vAQ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/reagent_analyzer{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"vAU" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/pipes/vents/scrubber/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/no_build{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"vBm" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/main_office)
+"vBp" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
+ },
+/obj/structure/window/reinforced/ultra{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"vBJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/pen,
+/obj/item/device/whistle,
+/obj/item/device/megaphone,
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"vBU" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"vCg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/suit_storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"vCk" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/hydroponics)
+"vCx" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"vCy" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera";
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"vCG" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"vDa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/hydroponics)
+"vEf" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"vEn" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/item/stack/sheet/mineral/uranium{
+ layer = 2.99
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"vEr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"vEx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ dir = 2;
+ name = "Morgue Waiting Room";
+ req_one_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"vEH" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"vFb" = (
+/obj/structure/surface/table/almayer,
+/obj/item/attachable/lasersight,
+/obj/item/reagent_container/food/drinks/cans/souto/vanilla{
+ pixel_x = 10;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"vFv" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"vFw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"vGk" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"vGr" = (
+/obj/structure/closet/firecloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"vGy" = (
+/obj/structure/largecrate/supply/supplies/tables_racks,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"vGA" = (
+/obj/structure/bed/sofa/south/grey/right,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"vGG" = (
+/obj/structure/bed/chair/comfy/bravo,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"vGI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/numbertwobunks)
+"vHh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/tool/warning_cone{
+ layer = 3.6;
+ pixel_x = -16;
+ pixel_y = -9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"vHq" = (
+/obj/item/device/assembly/mousetrap/armed,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/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{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"vHs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"vHO" = (
+/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/almayer/medical/containment/cell)
+"vHW" = (
+/obj/structure/surface/rack,
+/obj/item/tool/extinguisher,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"vIf" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/upper_medical)
+"vIm" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"vIu" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cichallway)
+"vIA" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"vIN" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"vJg" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"vJo" = (
+/obj/structure/machinery/computer/cameras/almayer_network{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/navigation)
+"vJy" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"vJM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"vJV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/bravo)
+"vJZ" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = -12
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3"
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"vKb" = (
+/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/almayer/medical/containment)
+"vKe" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"vKf" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "InnerShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"vKF" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"vLh" = (
+/obj/item/roller,
+/obj/structure/surface/rack,
+/obj/item/roller,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"vLj" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ name = "\improper Medical Bay";
+ req_one_access = null
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"vLv" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"vLA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"vMn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"vMo" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/operating_room_four)
+"vMx" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"vME" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"vMG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/iv_drip,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"vMI" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"vND" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie)
+"vNF" = (
+/obj/structure/reagent_dispensers/fueltank/custom,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"vNW" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 9
+ },
+/area/almayer/command/cic)
+"vOd" = (
+/obj/structure/machinery/optable,
+/obj/structure/sign/safety/medical{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/shipboard/brig/surgery)
+"vOh" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
+"vOy" = (
+/turf/closed/wall/almayer/white/reinforced,
+/area/almayer/medical/medical_science)
+"vOP" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"vPj" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/flashlight/lamp{
+ pixel_y = 8
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/device/flash,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"vPm" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south1)
+"vPr" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"vPv" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"vPw" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/ladder{
+ height = 1;
+ id = "cicladder4"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/living/briefing)
+"vPK" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/maint{
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"vPM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"vQe" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/obj/structure/catwalk{
+ health = null
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/stair_clone/upper)
+"vQf" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/command/securestorage)
+"vQq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera,
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"vQN" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ id = "Cell 4";
+ name = "\improper Courtyard Divider"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/cells)
+"vRa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/machinery/light,
+/obj/structure/surface/table/almayer,
+/obj/structure/sign/safety/rewire{
+ pixel_x = -17;
+ pixel_y = -25
+ },
+/obj/structure/sign/prop3{
+ pixel_x = -32
+ },
+/obj/structure/machinery/faxmachine/uscm{
+ department = "SEA"
+ },
+/turf/open/floor/strata{
+ desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know.";
+ icon = 'icons/turf/floors/floors.dmi';
+ icon_state = "wood"
+ },
+/area/almayer/shipboard/sea_office)
+"vRb" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 10
+ },
+/area/almayer/command/cic)
+"vRu" = (
+/obj/structure/surface/rack{
+ layer = 2.5
+ },
+/obj/item/tool/hand_labeler{
+ pixel_x = 4;
+ pixel_y = 11
+ },
+/obj/item/storage/box/matches,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"vRz" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_f_p)
+"vRX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/item/device/megaphone,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"vSg" = (
+/obj/structure/machinery/light/small,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"vSl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"vSn" = (
+/obj/structure/barricade/handrail/medical{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"vSp" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"vSE" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"vSG" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
+"vSH" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/item/stack/sheet/metal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"vSK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"vSN" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"vSW" = (
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/delta)
+"vTt" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"vTu" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"vTv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/circuitboard/airlock,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/item/stack/sheet/mineral/phoron/medium_stack{
+ desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."
+ },
+/obj/item/stack/sheet/mineral/phoron/medium_stack{
+ desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering)
+"vTK" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_a_p)
+"vTS" = (
+/obj/structure/machinery/light{
+ pixel_x = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"vUe" = (
+/obj/structure/bed/chair/comfy/charlie{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"vUh" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"vUi" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"vUI" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"vUL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flash,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"vUU" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/three{
+ pixel_x = 31;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/port_hallway)
+"vVb" = (
+/obj/structure/machinery/cm_vending/gear/tl{
+ density = 0;
+ pixel_x = -32;
+ vend_x_offset = 1
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"vVd" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/briefing)
+"vVh" = (
+/obj/item/weapon/dart/green,
+/obj/structure/dartboard{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"vVs" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"vVw" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"vVW" = (
+/obj/effect/decal/medical_decals{
+ icon_state = "triagedecaltopright"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"vWc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio/intercom/normandy{
+ layer = 3.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
+"vWo" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/evidence_storage)
+"vWt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/glass/beaker/large,
+/obj/item/reagent_container/glass/beaker/large,
+/obj/item/reagent_container/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/reagent_container/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/reagent_container/dropper,
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/reagent_container/glass/beaker/bluespace{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"vWx" = (
+/obj/structure/largecrate/random/barrel/blue,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"vWA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/pen{
+ pixel_x = 9;
+ pixel_y = -5
+ },
+/obj/item/prop/magazine/book/theartofwar,
+/turf/open/floor/almayer,
+/area/almayer/living/bridgebunks)
+"vWB" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/ashtray/plastic,
+/obj/item/trash/cigbutt/bcigbutt,
+/obj/item/trash/cigbutt{
+ pixel_x = -1;
+ pixel_y = 17
+ },
+/obj/item/trash/cigbutt{
+ icon_state = "ucigbutt";
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/item/tool/lighter/random{
+ pixel_x = -8;
+ pixel_y = 7
+ },
+/obj/structure/sign/prop3{
+ pixel_x = 28
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"vWJ" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"vWK" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"vXd" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ density = 0;
+ id = "engidorm";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/upper_engineering/port)
+"vXh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"vXx" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "64"
+ },
+/area/almayer/hallways/hangar)
+"vXQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/perma)
+"vXX" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"vXY" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"vYi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"vYm" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"vYt" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"vYz" = (
+/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
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"vYC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"vYM" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cichallway)
+"vZb" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 16;
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"vZv" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_missiles)
+"vZw" = (
+/turf/open/floor/almayer/research/containment/floor2,
+/area/almayer/medical/containment/cell/cl)
+"vZA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"wan" = (
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/brown,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/living/offices)
+"waD" = (
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/operating_room_one)
+"wba" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/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/plating/plating_catwalk,
+/area/almayer/hallways/aft_hallway)
+"wbe" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/helmetgarb/spacejam_tickets{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/prop/helmetgarb/spacejam_tickets{
+ pixel_x = -8;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"wbh" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"wbj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/aft_hallway)
+"wbu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"wbx" = (
+/obj/structure/sign/safety/hazard{
+ desc = "A sign that warns of a hazardous environment nearby";
+ name = "\improper Warning: Hazardous Environment"
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hull/lower_hull/l_f_p)
+"wbC" = (
+/obj/structure/machinery/atm{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"wbJ" = (
+/obj/structure/machinery/door_control/airlock{
+ id = "n_engi";
+ name = "Port Engi Airlock";
+ pixel_x = 28;
+ pixel_y = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/notunnel)
+"wbN" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"wbO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/pilotbunks)
+"wbP" = (
+/obj/structure/machinery/bioprinter{
+ stored_metal = 125
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_four)
+"wbX" = (
+/obj/structure/closet/secure_closet/cmdcabinet{
+ pixel_y = 24
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"wcN" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"wcR" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/cell/high,
+/obj/item/clothing/glasses/welding,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"wdb" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"wdf" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/auxiliary_officer_office)
+"wdo" = (
+/obj/structure/machinery/door/airlock/almayer/research/reinforced{
+ dir = 8;
+ name = "\improper Containment Airlock"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"wdr" = (
+/obj/structure/machinery/power/apc,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"wdF" = (
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/processing)
+"wdI" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"wdJ" = (
+/obj/structure/surface/rack,
+/obj/item/cell/high/empty,
+/obj/item/cell/high/empty,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"wei" = (
+/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/almayer/medical/hydroponics)
+"wex" = (
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 8;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/living/pilotbunks)
+"weC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/port_point_defense)
+"weD" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "dccbunk";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/living/pilotbunks)
+"weR" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/offices)
+"weU" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"wft" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"wfE" = (
+/turf/closed/wall/almayer,
+/area/almayer/living/gym)
+"wfL" = (
+/obj/structure/bed/chair/wood/normal{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/execution)
+"wfZ" = (
+/obj/structure/desertdam/decals/road_edge{
+ pixel_x = -12
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3";
+ pixel_y = -12
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"wga" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/reinforced/ultra{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/briefing)
+"wgd" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"wgi" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/main_office)
+"wgk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"wgo" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"wgR" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/technology_scanner,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"wgU" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"whc" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"whm" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/ares_console{
+ pixel_x = 9
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"whA" = (
+/turf/open/floor/almayer/uscm/directional,
+/area/almayer/living/briefing)
+"whB" = (
+/obj/structure/closet/firecloset,
+/obj/structure/sign/safety/reception{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/command/cichallway)
+"whZ" = (
+/obj/structure/sign/safety/refridgeration{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"wie" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/machinery/cm_vending/sorted/tech/circuits,
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop)
+"wir" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"wiz" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"wiG" = (
+/obj/structure/sign/poster{
+ pixel_x = -30;
+ pixel_y = 4
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/wood/ship,
+/area/almayer/engineering/ce_room)
+"wiI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/juicer{
+ pixel_y = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"wiN" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"wiW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"wjq" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"wjv" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/engineering/upper_engineering)
+"wjz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"wjC" = (
+/obj/structure/closet/firecloset,
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"wka" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/hotsauce/sriracha{
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"wkc" = (
+/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/almayer/medical/lockerroom)
+"wky" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"wkH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/whistle{
+ pixel_y = 4
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"wkM" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "ARES StairsLower";
+ name = "\improper ARES Core Shutters";
+ plane = -7
+ },
+/obj/effect/step_trigger/ares_alert/public{
+ alert_id = "AresStairs";
+ alert_message = "Caution: Movement detected in ARES Core.";
+ cooldown_duration = 1200
+ },
+/obj/structure/machinery/door/poddoor/almayer/blended/white/open{
+ closed_layer = 3.2;
+ id = "ARES Emergency";
+ layer = 3.2;
+ name = "ARES Emergency Lockdown";
+ needs_power = 0;
+ open_layer = 1.9;
+ plane = -7
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/airoom)
+"wkV" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "22"
+ },
+/area/almayer/hallways/hangar)
+"wkX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"wlb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"wlj" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/plasteel{
+ amount = 30;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/item/stack/sheet/mineral/uranium{
+ amount = 5
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/engine_core)
+"wlp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"wly" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/chief_mp_office)
+"wlE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/cic)
+"wlF" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"wlK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"wlL" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"wmg" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"wmz" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"wmE" = (
+/obj/structure/machinery/door/window/brigdoor/southright{
+ id = "Cell 4";
+ name = "Cell 4"
+ },
+/obj/structure/sign/safety/four{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"wmK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"wmQ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ dir = 2;
+ id_tag = "tc03";
+ name = "\improper Treatment Center"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wmT" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_x = 30
+ },
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/bridgebunks)
+"wnh" = (
+/obj/structure/window/framed/almayer/white/hull,
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"wnL" = (
+/obj/item/stack/tile/carpet{
+ amount = 12
+ },
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/screwdriver,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"wnY" = (
+/obj/item/tool/crowbar/red,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
+"woh" = (
+/turf/closed/wall/almayer/research/containment/wall/corner{
+ dir = 4
+ },
+/area/almayer/medical/containment/cell)
+"wos" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie)
+"woy" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"woG" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_p)
+"woM" = (
+/obj/structure/largecrate/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"wpg" = (
+/obj/structure/machinery/blackbox_recorder,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"wpw" = (
+/obj/structure/bed/chair/comfy/ares{
+ dir = 1
+ },
+/obj/structure/pipes/vents/pump/no_boom{
+ desc = "Has a valve and pump attached to it, connected to multiple gas tanks.";
+ name = "Security Vent"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"wpz" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"wpI" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"wqc" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"wqh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"wqq" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"wqu" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/lobby)
+"wqA" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"wqE" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"wqW" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/upper_medical)
+"wra" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "36"
+ },
+/area/almayer/hallways/hangar)
+"wrC" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"wrQ" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/starboard_garden)
+"wrT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/item/device/radio/marine,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"wse" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"wst" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"wsx" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/phone_base/rotary{
+ name = "Researcher Office Telephone";
+ phone_category = "Almayer";
+ phone_id = "Research";
+ pixel_y = 6
+ },
+/obj/item/reagent_container/glass/beaker{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/reagent_container/glass/beaker/large{
+ pixel_x = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/medical_science)
+"wsD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cic_hallway)
+"wsP" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ layer = 4.2;
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ layer = 4.2;
+ pixel_x = -10;
+ pixel_y = 1
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ layer = 4.2;
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/weapon/broken_bottle{
+ pixel_x = 11;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"wsR" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"wta" = (
+/obj/structure/closet/crate,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"wtd" = (
+/obj/structure/machinery/vending/coffee,
+/obj/item/toy/bikehorn/rubberducky{
+ desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!";
+ name = "Quackers";
+ pixel_x = 5;
+ pixel_y = 17
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"wty" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/delta)
+"wtM" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"wuc" = (
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ name = "\improper Brig Medbay";
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "20;3"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/surgery)
+"wul" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"wun" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower_engineering)
+"wup" = (
+/obj/structure/supply_drop/echo,
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
+"wuq" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"wuH" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
+/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza,
+/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_p)
+"wvb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/captain_mess)
+"wvj" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"wvI" = (
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/obj/structure/surface/table/reinforced/black,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"wvT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
+"wvU" = (
+/obj/structure/machinery/recharge_station,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/synthcloset)
+"wwk" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/item/stack/folding_barricade,
+/obj/item/stack/sheet/mineral/uranium{
+ layer = 2.99
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"wwr" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"wwu" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/port_hallway)
+"wwD" = (
+/obj/structure/bed/chair/comfy/orange,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"wwJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"wwW" = (
+/obj/structure/machinery/camera/autoname/almayer/containment/hidden{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 8
+ },
+/area/almayer/medical/containment/cell/cl)
+"wxc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/iv_drip,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wxj" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"wxq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wxU" = (
+/obj/item/ashtray/bronze{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 7;
+ pixel_y = 16
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/toy/beach_ball/holoball{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"wya" = (
+/obj/structure/platform,
+/obj/structure/largecrate/random/case/double{
+ layer = 2.98
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"wyt" = (
+/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/almayer/command/cichallway)
+"wyv" = (
+/obj/structure/machinery/door_control{
+ id = "ARES JoeCryo";
+ name = "Working Joe Cryogenics Lockdown";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"wyO" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"wyQ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door_control{
+ id = "ARES Emergency";
+ indestructible = 1;
+ name = "ARES Emergency Lockdown";
+ req_one_access_txt = "91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "plating"
+ },
+/area/almayer/command/airoom)
+"wzg" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"wzx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
+"wzZ" = (
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ dir = 1;
+ id = "medcryobeds";
+ id_tag = "medcryobeds";
+ name = "Medical Wheelchair Storage";
+ req_access = null;
+ req_one_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wAR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/port_hallway)
+"wAU" = (
+/obj/structure/bed/chair/comfy/delta,
+/obj/structure/sign/poster/music{
+ pixel_x = -27
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/briefing)
+"wBV" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "77"
+ },
+/area/almayer/hallways/hangar)
+"wBY" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
+"wCh" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"wCs" = (
+/obj/structure/machinery/vending/security,
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"wCI" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/living/briefing)
+"wCM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"wCT" = (
+/obj/effect/step_trigger/teleporter_vector{
+ name = "Almayer_AresDown";
+ vector_x = 97;
+ vector_y = -65
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/stairs{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"wDl" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"wDm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"wDs" = (
+/obj/structure/machinery/seed_extractor,
+/obj/structure/sign/safety/terminal{
+ pixel_x = -6;
+ pixel_y = -26
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 7;
+ pixel_y = -26
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 20;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"wDy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/computerlab)
+"wDH" = (
+/obj/structure/morgue,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/medical/morgue)
+"wDJ" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"wDK" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/bravo)
+"wDR" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"wEd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/alpha)
+"wEg" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "agentshuttle";
+ indestructible = 1;
+ unacidable = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/almayer/powered/agent)
+"wEl" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "50"
+ },
+/area/almayer/hallways/hangar)
+"wEI" = (
+/obj/structure/surface/table/reinforced/black,
+/obj/item/tool/pen,
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/obj/item/clipboard{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"wEO" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"wFb" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wFm" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
+"wFn" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/command/cic)
+"wFz" = (
+/obj/item/prop{
+ desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io.";
+ icon = 'icons/turf/whiskeyoutpost.dmi';
+ icon_state = "M56D_gun_e";
+ layer = 3.1;
+ name = "\improper M38D heavy machine gun 'Bess'";
+ pixel_x = -3;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"wFR" = (
+/turf/open/floor/almayer,
+/area/almayer/living/gym)
+"wGb" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"wGd" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"wGi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"wGA" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/starboard_hallway)
+"wGE" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"wGX" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/auxiliary_officer_office)
+"wHj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/prop/ice_colony/tiger_rug{
+ desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie.";
+ icon_state = "HotlineAlt";
+ layer = 2.9;
+ name = "Richard the tiger"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "emerald"
+ },
+/area/almayer/living/port_emb)
+"wHo" = (
+/turf/open/floor/almayer{
+ icon_state = "emerald"
+ },
+/area/almayer/living/briefing)
+"wHp" = (
+/obj/structure/bed/sofa/vert/grey,
+/obj/structure/bed/sofa/vert/grey{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"wIr" = (
+/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 = "cargo"
+ },
+/area/almayer/squads/req)
+"wIC" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/chief_mp_office)
+"wIG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/surface/table/almayer,
+/obj/item/trash/plate{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/item/trash/plate{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/condiment/peppermill{
+ pixel_x = 4
+ },
+/obj/item/reagent_container/food/condiment/saltshaker{
+ pixel_x = -4
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"wIQ" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"wJb" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/lower_medical_medbay)
+"wJo" = (
+/obj/structure/machinery/door/airlock/almayer/research/reinforced{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper CMO's Bedroom";
+ req_one_access_txt = "1;5"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/upper_medical)
+"wJw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/computer/supplycomp/vehicle,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
+"wJD" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/squads/charlie)
+"wJH" = (
+/turf/closed/wall/almayer/research/containment/wall/east,
+/area/almayer/medical/containment/cell/cl)
+"wKn" = (
+/obj/structure/surface/rack,
+/obj/item/facepaint/sniper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"wKF" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"wKP" = (
+/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/almayer/medical/containment)
+"wLi" = (
+/obj/structure/machinery/door_control/airlock{
+ id = "s_engi";
+ name = "Starboard Engi Airlock";
+ pixel_x = 28;
+ pixel_y = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/notunnel)
+"wLk" = (
+/obj/item/coin/silver{
+ desc = "A small coin, bearing the falling falcons insignia.";
+ name = "falling falcons challenge coin"
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"wLm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/living/cryo_cells)
+"wLu" = (
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"wLy" = (
+/obj/structure/pipes/vents/pump/no_boom{
+ name = "Secure Reinforced Air Vent";
+ welded = 1
+ },
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"wLG" = (
+/obj/item/bedsheet/blue{
+ layer = 3.2
+ },
+/obj/item/bedsheet/blue{
+ pixel_y = 13
+ },
+/obj/item/clothing/head/ushanka{
+ layer = 3.3
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed,
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/living/port_emb)
+"wLK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/tray{
+ pixel_y = 9
+ },
+/obj/item/tool/kitchen/tray{
+ pixel_y = 12
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"wLN" = (
+/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/containment)
+"wLV" = (
+/obj/structure/bed/chair/comfy/charlie,
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"wMm" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"wMG" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/alpha)
+"wMO" = (
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
+"wNl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/USCMtray{
+ layer = 3.2;
+ pixel_x = 4;
+ pixel_y = 17
+ },
+/obj/item/reagent_container/food/drinks/cans/souto{
+ pixel_x = -10;
+ pixel_y = 1
+ },
+/obj/item/reagent_container/food/snacks/grown/orange{
+ layer = 3.3;
+ pixel_x = 1;
+ pixel_y = 13
+ },
+/obj/item/prop/magazine/book/starshiptroopers{
+ pixel_x = 8;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"wNm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull)
+"wNT" = (
+/obj/structure/platform,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"wNU" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 2;
+ req_one_access = list(2,34,30)
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"wOh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"wOt" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering/starboard)
+"wOK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"wPf" = (
+/obj/structure/sign/safety/reception{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"wPk" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/execution)
+"wPz" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"wPC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/charlie)
+"wPF" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/cameras/almayer_network/vehicle{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/command/cichallway)
+"wQg" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/aft_hallway)
+"wQk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/structure/machinery/vending/coffee,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"wQv" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"wQx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"wRm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/vending/snack{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"wRN" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/goldappleseed,
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"wRO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/grunt_rnr)
+"wRP" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
+"wRT" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"wSk" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"wSm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"wSn" = (
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/laundry)
+"wSR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"wSX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"wTd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/command/securestorage)
+"wTg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"wTm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"wTw" = (
+/obj/structure/machinery/cm_vending/sorted/attachments/squad{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "17;18;21";
+ vend_y_offset = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"wTy" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"wTJ" = (
+/obj/structure/barricade/handrail,
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer,
+/area/almayer/engineering/upper_engineering/port)
+"wTM" = (
+/turf/closed/wall/almayer/research/containment/wall/south,
+/area/almayer/medical/containment/cell)
+"wTN" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"wUd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/gloves{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/storage/fancy/candle_box,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/medical/morgue)
+"wUz" = (
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"wUN" = (
+/obj/structure/machinery/optable,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"wUO" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "InnerShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"wUP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"wUR" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"wUS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"wUX" = (
+/obj/structure/surface/rack,
+/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{
+ pixel_x = -1;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{
+ pixel_x = 1;
+ pixel_y = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"wVb" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_a_s)
+"wVw" = (
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/item/vehicle_clamp,
+/obj/item/vehicle_clamp,
+/obj/item/vehicle_clamp,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/ammo_magazine/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/obj/item/weapon/gun/smg/m39,
+/turf/open/floor/plating/almayer,
+/area/almayer/shipboard/brig/armory)
+"wVy" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -32
+ },
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"wVz" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"wVB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/almayer/living/bridgebunks)
+"wVD" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wirecutters,
+/obj/item/tool/shovel/snow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"wVP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"wVV" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/shipboard/brig/cryo)
+"wVW" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/command/cic)
+"wVY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/lobby)
+"wWf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"wWg" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/living/chapel)
+"wWk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"wWm" = (
+/turf/open/floor/almayer/research/containment/corner_var1{
+ icon_state = "containment_corner_variant_2"
+ },
+/area/almayer/medical/containment/cell)
+"wWq" = (
+/obj/structure/surface/table/reinforced/black,
+/obj/item/clothing/suit/space/compression/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"wWz" = (
+/turf/closed/wall/almayer/research/containment/wall/north,
+/area/almayer/medical/containment/cell)
+"wWC" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"wWJ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/port_emb)
+"wWL" = (
+/obj/item/tool/screwdriver,
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"wWP" = (
+/obj/structure/prop/cash_register/broken,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/squads/req)
+"wWQ" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/port_hallway)
+"wWR" = (
+/obj/structure/machinery/medical_pod/bodyscanner{
+ dir = 8
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"wWT" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"wXh" = (
+/obj/structure/machinery/floodlight/landing{
+ name = "bolted floodlight"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"wXH" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"wXI" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/living/grunt_rnr)
+"wXT" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ name = "\improper Engineering Storage"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/hangar)
+"wYj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/bed/sofa/south/white/left{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"wYA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"wYK" = (
+/obj/structure/barricade/handrail/medical,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"wYS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wYY" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "CE Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/engineering/ce_room)
+"wZa" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/general_equipment)
+"wZv" = (
+/obj/structure/prop/invuln{
+ desc = "An inflated membrane. This one is puncture proof. Wow!";
+ icon = 'icons/obj/items/inflatable.dmi';
+ icon_state = "wall";
+ name = "umbilical wall"
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer_hull{
+ dir = 4;
+ icon_state = "outerhull_dir"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"wZy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"wZE" = (
+/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/almayer/medical/operating_room_four)
+"wZH" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_s)
+"wZM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"wZT" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"wZX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/command/lifeboat)
+"xad" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/port_point_defense)
+"xae" = (
+/obj/structure/surface/table/almayer,
+/obj/item/organ/lungs/prosthetic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"xaC" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/tool/kitchen/utensil/pfork{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/food/snacks/mre_pack/meal5{
+ desc = "How long has this been sitting here?";
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"xaF" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"xaM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/newspaper{
+ name = "character sheet";
+ pixel_x = -6
+ },
+/obj/item/newspaper{
+ name = "character sheet";
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/toy/dice/d20,
+/obj/item/toy/crayon/blue{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"xaN" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/knife,
+/obj/item/tool/kitchen/utensil/fork{
+ pixel_x = 7
+ },
+/obj/item/tool/kitchen/utensil/spoon{
+ pixel_x = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"xaS" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 5
+ },
+/area/almayer/command/lifeboat)
+"xba" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/living/cryo_cells)
+"xbd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/briefing)
+"xbk" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"xbN" = (
+/obj/structure/surface/rack{
+ density = 0;
+ pixel_y = 16
+ },
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/plating,
+/area/almayer/command/airoom)
+"xcp" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_ew_full_cap";
+ layer = 3.5
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"xct" = (
+/obj/item/reagent_container/food/snacks/wrapped/barcardine,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"xcP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = 9;
+ pixel_y = 3
+ },
+/obj/item/prop/helmetgarb/flair_io{
+ pixel_x = -10;
+ pixel_y = 6
+ },
+/obj/item/prop/magazine/boots/n160{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/obj/structure/phone_base/rotary{
+ name = "Flight Deck Telephone";
+ phone_category = "Almayer";
+ phone_id = "Flight Deck";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"xdx" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/regular/empty,
+/obj/item/storage/firstaid/regular/empty,
+/obj/item/storage/firstaid/regular/empty,
+/obj/structure/sign/safety/outpatient{
+ pixel_x = -17;
+ pixel_y = -6
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"xeG" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"xfc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 36
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull)
+"xfh" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"xfi" = (
+/obj/structure/machinery/power/smes/buildable,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/engineering/engine_core)
+"xfm" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/living/cafeteria_officer)
+"xfw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/fancy/cigarettes/lucky_strikes,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"xfO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/living/bridgebunks)
+"xfT" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/operating_room_one)
+"xgh" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"xgm" = (
+/obj/structure/reagent_dispensers/oxygentank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"xgn" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "ForePortMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/lower_hull/l_f_p)
+"xgr" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliason)
+"xgx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/vehiclehangar)
+"xgJ" = (
+/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/almayer/medical/lockerroom)
+"xgL" = (
+/obj/item/clothing/head/welding{
+ pixel_y = 6
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"xgS" = (
+/obj/structure/largecrate/supply/supplies/mre{
+ desc = "A supply crate containing everything you need to stop a CLF uprising.";
+ name = "\improper USCM crate 'FOB supplies'"
+ },
+/obj/structure/sign/arcturianstopsign{
+ pixel_y = 32
+ },
+/obj/item/folded_tent/big{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/item/storage/box/mousetraps{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"xhn" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"xhx" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"xhE" = (
+/obj/structure/bed/chair/bolted{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/main_office)
+"xhM" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"xhQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"xhU" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"xhZ" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/cichallway)
+"xiz" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"xiC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engine_core)
+"xjb" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ access_modified = 1;
+ name = "\improper Main Kitchen";
+ req_one_access_txt = "30;19"
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/living/grunt_rnr)
+"xjw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"xjz" = (
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/almayer/command/lifeboat)
+"xjC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"xjD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"xjG" = (
+/obj/structure/machinery/door_control{
+ id = "Interrogation Shutters";
+ name = "\improper Shutters";
+ pixel_x = 24;
+ pixel_y = 12;
+ req_access_txt = "3"
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"xjK" = (
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"xjW" = (
+/obj/structure/sign/safety/hazard{
+ desc = "A sign that warns of a hazardous environment nearby";
+ name = "\improper Warning: Hazardous Environment"
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hallways/hangar)
+"xka" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/starboard_point_defense)
+"xkd" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/cells)
+"xkC" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/port_hallway)
+"xlk" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/almayer/squads/bravo)
+"xlC" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/engineering/ce_room)
+"xlD" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"xlX" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"xlY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/engineering_workshop)
+"xmg" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_27";
+ layer = 3.1;
+ pixel_x = -2;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"xmv" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/cameras/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"xmJ" = (
+/obj/structure/closet,
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
+"xmT" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"xne" = (
+/obj/structure/machinery/door/poddoor/almayer/blended{
+ id = "RoomDivider";
+ layer = 3.1;
+ name = "\improper Room Divider"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/corporateliason)
+"xnl" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Exterior Airlock";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"xnR" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Engineering Storage"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering)
+"xnY" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"xoe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/status_display{
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/squads/delta)
+"xoh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"xoJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/port_point_defense)
+"xoO" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"xoS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/item/weapon/gun/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/item/ammo_magazine/rifle/m4ra,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/brig/armory)
+"xpd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"xpf" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"xpo" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"xps" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ access_modified = 1;
+ name = "\improper Brig";
+ req_access = null;
+ req_one_access_txt = "1;3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/lobby)
+"xpt" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"xpI" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/starboard_hallway)
+"xpT" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"xqp" = (
+/obj/structure/machinery/body_scanconsole{
+ dir = 8;
+ layer = 3.1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/machinery/disposal/delivery{
+ density = 0;
+ desc = "A pneumatic delivery unit. Sends items to the requisitions.";
+ icon_state = "delivery_med";
+ name = "Requisitions Delivery Unit";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"xqv" = (
+/obj/structure/bed/sofa/south/white/right,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"xqy" = (
+/obj/structure/window/framed/almayer/white,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "or4privacyshutter";
+ name = "\improper Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/almayer/medical/operating_room_four)
+"xqD" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = -17
+ },
+/turf/closed/wall/almayer,
+/area/almayer/command/securestorage)
+"xqM" = (
+/obj/structure/platform,
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"xqS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"xro" = (
+/obj/structure/toilet{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"xrr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/stern_hallway)
+"xrN" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"xrP" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/evidence_storage)
+"xsl" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering)
+"xsw" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"xsz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/medical/upper_medical)
+"xsW" = (
+/obj/structure/machinery/cm_vending/gear/vehicle_crew,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/vehiclehangar)
+"xtD" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldpack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"xtM" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_lobby)
+"xtW" = (
+/obj/structure/machinery/door_control{
+ id = "dropship_normandy";
+ name = "Dropship Lockdown";
+ normaldoorcontrol = 3;
+ pixel_y = -19;
+ req_one_access_txt = "3;22";
+ throw_range = 15
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "floor8"
+ },
+/area/almayer/hallways/hangar)
+"xuc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = -8;
+ pixel_y = 3
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"xuB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"xuE" = (
+/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,
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment/cell)
+"xuI" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"xuQ" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/living/port_emb)
+"xuU" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/fueltank/custom,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/engineering/engine_core)
+"xuY" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"xuZ" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"xvh" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/aft_hallway)
+"xvr" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/chief_mp_office)
+"xvw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"xvE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/charlie)
+"xvM" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = 24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer/no_build{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/airoom)
+"xvX" = (
+/obj/structure/machinery/cm_vending/gear/leader,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/bravo)
+"xwl" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"xwp" = (
+/obj/item/storage/box/matches{
+ pixel_x = -11;
+ pixel_y = -3
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/item/reagent_container/food/drinks/cans/dr_gibb{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/disco_fever{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/grunt_rnr)
+"xwq" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"xwG" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/aft_hallway)
+"xxe" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"xxi" = (
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal3"
+ },
+/obj/structure/desertdam/decals/road_edge{
+ icon_state = "road_edge_decal5";
+ pixel_x = -2
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/basketball)
+"xxm" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/item/clothing/shoes/marine{
+ layer = 4.1;
+ pixel_x = -5;
+ pixel_y = 20
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ layer = 4.2;
+ pixel_x = 3;
+ pixel_y = 16
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/red{
+ layer = 3.2
+ },
+/obj/item/bedsheet/red{
+ pixel_y = 13
+ },
+/turf/open/floor/plating,
+/area/almayer/living/port_emb)
+"xxI" = (
+/obj/structure/cargo_container/wy/mid,
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = -22;
+ pixel_y = 3;
+ serial_number = 11
+ },
+/obj/structure/sign/poster{
+ desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
+ icon_state = "poster12";
+ name = "Beach Babe Pinup";
+ pixel_x = 6;
+ pixel_y = 8;
+ serial_number = 12
+ },
+/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";
+ name = "'Miss July' Pinup";
+ serial_number = 16
+ },
+/obj/structure/sign/poster{
+ desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure.";
+ icon_state = "poster10";
+ name = "Koorlander Gold Poster";
+ pixel_x = 29;
+ pixel_y = 6;
+ serial_number = 10
+ },
+/obj/structure/bed/chair{
+ dir = 1;
+ pixel_y = 42
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"xxJ" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"xxT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/frame/table,
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_s)
+"xxZ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
+"xyk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"xys" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/brig/main_office)
+"xyt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/folder/white{
+ layer = 2.9;
+ pixel_x = -8
+ },
+/obj/structure/machinery/computer/working_joe{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"xyw" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"xyz" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
+"xyA" = (
+/obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"xyE" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"xyY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"xzf" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/living/basketball)
+"xzo" = (
+/obj/item/stack/catwalk,
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/upper_hull/u_a_p)
+"xzp" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"xzu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/cells)
+"xAe" = (
+/turf/closed/wall/almayer/research/containment/wall/corner,
+/area/almayer/medical/containment/cell)
+"xAj" = (
+/obj/structure/bed/chair/bolted{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"xAt" = (
+/obj/structure/bed/chair/comfy/charlie{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldfull"
+ },
+/area/almayer/living/briefing)
+"xAB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"xAC" = (
+/obj/structure/surface/rack,
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"xAI" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/platform_decoration{
+ dir = 5;
+ layer = 3.51
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"xAY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"xBe" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/engineering/upper_engineering)
+"xBn" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
+ id_tag = "Boat1-D3";
+ linked_dock = "almayer-lifeboat1";
+ throw_dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"xBQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
+"xBV" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"xBY" = (
+/turf/open/floor/almayer,
+/area/almayer/engineering/laundry)
+"xCa" = (
+/obj/structure/closet/coffin/woodencrate,
+/obj/item/frame/table/wood/poor,
+/obj/item/frame/table/wood/poor,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
+"xCd" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
+ },
+/area/almayer/shipboard/brig/processing)
+"xCj" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"xCm" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"xCu" = (
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "39"
+ },
+/area/almayer/hallways/hangar)
+"xCN" = (
+/obj/structure/prop/holidays/string_lights{
+ pixel_y = 27
+ },
+/obj/structure/largecrate/random/barrel/red,
+/obj/item/reagent_container/food/drinks/cans/cola{
+ pixel_x = -2;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"xCR" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_s)
+"xCX" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"xDn" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"xDp" = (
+/obj/structure/surface/rack,
+/obj/item/paper{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/folder/yellow,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_s)
+"xDs" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "68"
+ },
+/area/almayer/hallways/hangar)
+"xDC" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"xDH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/overwatch_console{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = 15
+ },
+/obj/structure/machinery/light,
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Bravo Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Bravo Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"xDQ" = (
+/obj/structure/platform,
+/obj/item/trash/USCMtray{
+ pixel_y = 4
+ },
+/obj/item/trash/USCMtray{
+ pixel_y = 6
+ },
+/obj/item/trash/USCMtray{
+ pixel_y = 8
+ },
+/obj/item/trash/USCMtray{
+ pixel_y = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"xEc" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"xEe" = (
+/obj/structure/bed,
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/perma)
+"xEz" = (
+/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/almayer/medical/operating_room_two)
+"xEF" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/upper_hull/u_f_p)
+"xEO" = (
+/turf/open/floor/prison{
+ icon_state = "kitchen"
+ },
+/area/almayer/engineering/upper_engineering)
+"xEX" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/offices)
+"xFs" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/handcuffs{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/flash{
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"xFw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/aft_hallway)
+"xFD" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "ForeStarboardMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/hull/lower_hull/l_f_s)
+"xFP" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/starboard_missiles)
+"xFZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/gym)
+"xGh" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/obj/item/seeds/goldappleseed,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/shipboard/brig/cells)
+"xGk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/aft_hallway)
+"xGo" = (
+/obj/structure/machinery/autolathe,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"xGE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ pixel_y = -1
+ },
+/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/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/bravo)
+"xGJ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_x = -13
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/living/briefing)
+"xHe" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"xHp" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"xHG" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"xHM" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/sentencing,
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"xHW" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"xIb" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_p)
+"xId" = (
+/obj/structure/surface/rack,
+/obj/item/mortar_shell/he,
+/obj/item/mortar_shell/he,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/req)
+"xIi" = (
+/obj/item/stool{
+ pixel_x = 15;
+ pixel_y = 6
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"xIj" = (
+/obj/structure/largecrate/random/secure,
+/obj/item/weapon/baseballbat/metal{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/sunglasses{
+ pixel_y = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"xIk" = (
+/obj/structure/machinery/cryopod/right{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"xIo" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/prop/almayer/overwatch_console{
+ dir = 8;
+ layer = 3.2;
+ pixel_x = -17;
+ pixel_y = -17
+ },
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Delta Overwatch Telephone";
+ phone_category = "Command";
+ phone_id = "Delta Overwatch"
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"xIw" = (
+/obj/structure/machinery/brig_cell/cell_2{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/shipboard/brig/processing)
+"xIQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/offices)
+"xJe" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/shipboard/brig/cells)
+"xJh" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/device/analyzer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"xJi" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"xJn" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"xJC" = (
+/obj/structure/machinery/door/airlock/almayer/generic/corporate{
+ name = "Corporate Liaison's Closet"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/corporateliason)
+"xJH" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie_delta_shared)
+"xJR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/hangar)
+"xJX" = (
+/obj/structure/shuttle/part/dropship2/right_inner_wing_connector,
+/turf/open/space/basic,
+/area/almayer/hallways/hangar)
+"xKM" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 16;
+ pixel_y = -30
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"xKT" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/synthcloset)
+"xKW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_p)
+"xLI" = (
+/turf/closed/shuttle/dropship2{
+ icon_state = "63"
+ },
+/area/almayer/hallways/hangar)
+"xMb" = (
+/obj/structure/shuttle/part/dropship2/transparent/upper_right_wing,
+/turf/open/floor/plating,
+/area/almayer/hallways/hangar)
+"xMf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/shipboard/port_point_defense)
+"xMh" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = -16;
+ pixel_y = 17
+ },
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_p)
+"xMj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"xMk" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/aft_hallway)
+"xMs" = (
+/turf/closed/wall/almayer/white,
+/area/almayer/medical/operating_room_two)
+"xMA" = (
+/obj/structure/machinery/computer/med_data,
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/cic)
+"xMB" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 6
+ },
+/area/almayer/command/cic)
+"xML" = (
+/obj/structure/machinery/computer/cameras/wooden_tv/prop{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"xMQ" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"xMR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/bravo)
+"xNb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"xNj" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
+ req_access = null;
+ req_one_access_txt = "7;23;27"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/hangar)
+"xNu" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "sterile"
+ },
+/area/almayer/medical/upper_medical)
+"xNv" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/command/computerlab)
+"xNz" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/microwave{
+ pixel_y = 7
+ },
+/obj/item/storage/box/cups{
+ pixel_x = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_y = 19
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/auxiliary_officer_office)
+"xNB" = (
+/obj/structure/machinery/light,
+/obj/structure/sign/safety/security{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/starboard_hallway)
+"xOL" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/grunt_rnr)
+"xOY" = (
+/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/almayer/medical/containment/cell)
+"xPE" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"xPR" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/briefing)
+"xPZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"xQa" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/cic)
+"xQg" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/living/pilotbunks)
+"xQm" = (
+/turf/open/floor/almayer/research/containment/floor2{
+ dir = 1
+ },
+/area/almayer/medical/containment/cell)
+"xQD" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/obj/item/paper_bin/uscm{
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/perma)
+"xQV" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"xRc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "Under Construction Shutters";
+ name = "shutter-control";
+ pixel_x = -25
+ },
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"xRh" = (
+/obj/structure/bed,
+/obj/item/bedsheet/green,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/machinery/cm_vending/clothing/senior_officer{
+ density = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"xRj" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/squads/charlie)
+"xRw" = (
+/turf/open/floor/almayer/uscm/directional{
+ dir = 1
+ },
+/area/almayer/living/briefing)
+"xRE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"xRH" = (
+/obj/structure/sign/safety/fibre_optics{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "tcomms"
+ },
+/area/almayer/command/telecomms)
+"xRJ" = (
+/obj/structure/bed/chair/comfy/bravo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangefull"
+ },
+/area/almayer/living/briefing)
+"xRU" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"xSb" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_p)
+"xSw" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/open/shower{
+ name = "cryo curtain"
+ },
+/turf/open/floor/plating,
+/area/almayer/squads/charlie)
+"xSz" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/shipboard/brig/cic_hallway)
+"xSA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ layer = 3.1;
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/item/book/manual/marine_law{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/lobby)
+"xSI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/repair_bay)
+"xSM" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/obj/effect/landmark/ert_spawns/distress_cryo,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"xSW" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/squads/alpha)
+"xSY" = (
+/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/almayer/medical/containment)
+"xTp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/processing)
+"xTt" = (
+/obj/structure/disposalpipe/segment{
+ 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 = "test_floor4"
+ },
+/area/almayer/hallways/stern_hallway)
+"xTR" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/plating,
+/area/almayer/command/cichallway)
+"xTW" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = 4
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/yellow{
+ layer = 3.2
+ },
+/obj/item/bedsheet/red{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/living/port_emb)
+"xUA" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/pouch/tools/tank,
+/obj/structure/sign/safety/life_support{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"xUB" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/command/cic)
+"xUI" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
+"xUV" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
+"xVc" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door_control{
+ id = "ARES StairsUpper";
+ name = "ARES Core Access";
+ pixel_x = 24;
+ pixel_y = 24;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"xVj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldingtool{
+ pixel_x = 6;
+ pixel_y = -16
+ },
+/obj/item/clothing/head/welding,
+/turf/open/floor/plating,
+/area/almayer/hull/lower_hull/l_f_p)
+"xVk" = (
+/turf/open/space,
+/area/space/almayer/lifeboat_dock)
+"xVF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
+"xVI" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"xVO" = (
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/item/clothing/suit/storage/marine/light/vest,
+/obj/structure/closet/secure_closet/guncabinet/red,
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/engineering/engineering_workshop/hangar)
+"xVS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/lifeboat_pumps/south2)
+"xVT" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/closed/wall/almayer,
+/area/almayer/living/tankerbunks)
+"xWd" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/squads/alpha_bravo_shared)
+"xWo" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "19;21"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
+"xWp" = (
+/turf/open/floor/almayer,
+/area/almayer/living/offices/flight)
+"xWv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
+"xWF" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"xWO" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north1)
+"xWT" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 80
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/port_emb)
+"xXa" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"xXh" = (
+/turf/closed/wall/almayer/research/containment/wall/west,
+/area/almayer/medical/containment/cell)
+"xXr" = (
+/obj/item/reagent_container/glass/beaker/bluespace,
+/obj/structure/machinery/chem_dispenser/research,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"xYf" = (
+/obj/structure/machinery/cm_vending/clothing/sea,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/sea_office)
+"xYj" = (
+/obj/structure/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17;
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/shipboard/brig/cells)
+"xYB" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/starboard_point_defense)
+"xYN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_f_s)
+"xYP" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/cryo_cells)
+"xYQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"xYZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/upper_engineering)
+"xZz" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/faxmachine/uscm/command/capt,
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"xZI" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"xZK" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"xZU" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"yac" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"yal" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"yaz" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
+ name = "\improper Officer's Study"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/officer_study)
+"yaG" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"yaQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 9
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"yaZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"ybb" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/ids{
+ pixel_x = -4;
+ pixel_y = 14
+ },
+/obj/item/device/flash{
+ pixel_y = -8
+ },
+/obj/structure/machinery/faxmachine/uscm/brig,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ybf" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/aft_hallway)
+"ybr" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ybO" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/stack/sheet/mineral/phoron/medium_stack,
+/obj/item/stack/sheet/mineral/phoron/medium_stack{
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_a_p)
+"ybS" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_a_s)
+"ycd" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/squads/delta)
+"ycj" = (
+/obj/structure/machinery/medical_pod/sleeper{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
+"ycm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cells)
+"ycp" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/plating,
+/area/almayer/squads/req)
+"ycr" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/secure_data,
+/turf/open/floor/almayer,
+/area/almayer/shipboard/brig/processing)
+"ycV" = (
+/obj/structure/curtain/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"ycZ" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/squads/delta)
+"ydh" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/black,
+/obj/item/tank/oxygen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/port)
+"ydx" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_a_p)
+"ydz" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
+"ydE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/hydroponics)
+"ydI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"ydM" = (
+/obj/structure/window{
+ dir = 8
+ },
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{
+ density = 0;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/living/cryo_cells)
+"ydU" = (
+/obj/structure/window/framed/almayer/hull/hijack_bustable,
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ id = "Perma 2";
+ name = "\improper isolation shutter"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/turf/open/floor/plating,
+/area/almayer/shipboard/brig/perma)
+"ydY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"yeo" = (
+/obj/structure/machinery/cm_vending/clothing/dress{
+ req_access = list(1)
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"yev" = (
+/obj/item/device/flashlight/lamp/green,
+/obj/structure/surface/table/woodentable/fancy,
+/turf/open/floor/carpet,
+/area/almayer/living/commandbunks)
+"yeH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
+"yeN" = (
+/obj/structure/machinery/landinglight/ds2/delaythree{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/hangar)
+"yeP" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_a_s)
+"yeR" = (
+/obj/structure/machinery/cm_vending/clothing/senior_officer{
+ req_access = null;
+ req_access_txt = 19;
+ req_one_access = null
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/shipboard/brig/chief_mp_office)
+"yfv" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/aft_hallway)
+"yfw" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/starboard_hallway)
+"yfy" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/crushed_cup,
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/spacecash/c10{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/ashtray/plastic{
+ pixel_x = 5;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"yfS" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/living/grunt_rnr)
+"yge" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
+"ygs" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Bathroom"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/captain_mess)
+"ygy" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_f_p)
+"ygK" = (
+/obj/structure/prop/almayer/computers/sensor_computer3,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"yhI" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south1)
+"yhQ" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hull/lower_hull/l_m_p)
+"yiq" = (
+/obj/structure/sign/safety/north{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/starboard_hallway)
+"yit" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/pipes/vents/pump/no_boom{
+ dir = 1
+ },
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"yiC" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+"yiE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/engineering_workshop/hangar)
+"yiW" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/squads/charlie)
+"yiX" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/living/synthcloset)
+"yjb" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/morgue)
+"yji" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_p)
+"yjq" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ icon_state = "almayer_pdoor";
+ id = "n_engi_ext"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/upper_engineering/notunnel)
+"yjM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/living/pilotbunks)
+"ykj" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Rest and Relaxation Area"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/grunt_rnr)
+"yky" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"ykF" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hull/lower_hull/l_m_s)
+"ykP" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/obj/item/device/taperecorder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/brig/main_office)
+"ylc" = (
+/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/almayer/medical/containment)
+"ylg" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/almayer/no_build{
+ icon_state = "ai_floors"
+ },
+/area/almayer/command/airoom)
+"ylJ" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/stern_hallway)
+"ylY" = (
+/obj/structure/largecrate/random/case/double,
+/obj/item/tool/wet_sign{
+ pixel_y = 18
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ desc = "A handful of rounds to reload on the go.";
+ icon = 'icons/obj/items/weapons/guns/handful.dmi';
+ icon_state = "bullet_2";
+ name = "handful of pistol bullets (9mm)";
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/lower_hull/l_m_s)
+"ymi" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_one_access = null;
+ req_one_access_txt = "2;30;34"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
+
+(1,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(2,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(3,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(4,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(5,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(6,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(7,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(8,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(9,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(10,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(11,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(12,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(13,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(14,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(15,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(16,1,1) = {"
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+"}
+(17,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(18,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(19,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(20,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(21,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(22,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(23,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(24,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(25,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(26,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(27,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(28,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(29,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(30,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(31,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(32,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(33,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(34,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(35,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+cZs
+cZs
+iZG
+iZG
+iZG
+cZs
+cZs
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(36,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aag
+cZs
+cWN
+dgx
+dgx
+dgx
+sdq
+cZs
+aag
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(37,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+cZs
+cZs
+cZs
+cZs
+cZs
+cZs
+dfp
+sEa
+vBJ
+uNl
+oxn
+cZs
+xEF
+xEF
+xEF
+xEF
+xEF
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(38,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aag
+cZs
+yeR
+aTg
+kyI
+aTg
+pdG
+vAG
+dOL
+qzH
+hwS
+wly
+wIC
+dtN
+syM
+irr
+dAb
+xEF
+aag
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(39,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+pCi
+pCi
+cZs
+osJ
+aTg
+xvr
+bZN
+wIC
+dWk
+fYX
+ush
+rTt
+vAG
+wIC
+fGN
+uNF
+uNF
+shw
+xEF
+xEF
+xEF
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(40,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+pCi
+pCi
+myT
+wIC
+lcW
+pbC
+xvr
+vCG
+wIC
+tNF
+tNF
+wIC
+hzx
+wIC
+wIC
+vBm
+vBm
+bIi
+mnm
+kPo
+cFX
+xEF
+xEF
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(41,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+pCi
+pCi
+pCi
+pCi
+pCi
+pCi
+pCi
+pCi
+cpf
+cos
+wIC
+wIC
+wIC
+wIC
+wIC
+wIC
+cNY
+tak
+sip
+mLJ
+ntm
+hND
+kif
+hND
+mnm
+wVz
+uNF
+dDQ
+sGe
+xEF
+xEF
+xEF
+xEF
+xEF
+xEF
+xEF
+xEF
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(42,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+pCi
+mUQ
+rPC
+hUg
+hUg
+xhM
+hUg
+tng
+hGD
+wzx
+vBm
+paq
+uoY
+vUL
+vez
+xys
+swo
+eRL
+eRL
+mLJ
+bua
+vBm
+xkd
+xkd
+xkd
+xkd
+uNF
+iYi
+gSs
+eyd
+uNF
+kQz
+mnm
+uNF
+uNF
+flP
+xEF
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(43,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aac
+aaf
+aag
+pCi
+rPC
+hUg
+rPC
+vWx
+age
+dPY
+rTV
+hUg
+tYB
+vBm
+qfR
+tak
+tak
+bvx
+xys
+ldu
+eRL
+eRL
+mLJ
+eiO
+xFs
+xkd
+eiH
+aTV
+xkd
+xkd
+xkd
+mnm
+mnm
+iqx
+qFl
+vUI
+mnm
+mnm
+uNF
+xEF
+aag
+aaf
+ajY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(44,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+pCi
+rPC
+hUg
+vBm
+vBm
+vBm
+vBm
+vBm
+qmC
+vBm
+vBm
+ouV
+bTw
+sjc
+dci
+rzj
+tGg
+sjc
+sjc
+iqn
+eRL
+tmy
+xkd
+rUB
+dSn
+soa
+xzu
+xkd
+xkd
+xkd
+xkd
+xkd
+xkd
+xkd
+uNF
+mnm
+xEF
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(45,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+ext
+rPC
+mUQ
+vBm
+rBV
+oPk
+mqo
+vBm
+eRL
+rag
+qqN
+lzx
+mLJ
+bua
+gcT
+dSc
+qre
+eRL
+eOR
+aJz
+dXy
+nHg
+xkd
+ghX
+rAv
+xkd
+eTo
+iHG
+dCe
+moB
+uns
+vCy
+eyV
+xkd
+dAb
+mnm
+uNF
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(46,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+oCL
+hUg
+fuB
+vBm
+ldu
+wgi
+wgi
+ckS
+eRL
+bua
+gcT
+gcT
+tJy
+fnC
+tpn
+tpn
+tpn
+ula
+tpn
+wvT
+luw
+sgi
+xkd
+xkd
+xkd
+xkd
+kmd
+tUx
+ebd
+tHS
+xGh
+jVa
+wDs
+xkd
+ukt
+mnm
+uNF
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aag
+dqw
+bDF
+bDF
+dqw
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+dqw
+bDF
+bDF
+dqw
+aag
+aag
+aag
+aaf
+aaf
+aaf
+aaf
+aaf
+ajY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(47,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+hUg
+rPC
+vBm
+vBm
+sFC
+sFC
+sFC
+vBm
+pcQ
+xHe
+gqW
+gqW
+lCM
+ugT
+tpn
+vrM
+kta
+vWo
+xrP
+xTp
+pyj
+pwt
+xkd
+uvY
+oBq
+xkd
+rPh
+iOD
+iOD
+tHS
+sqW
+tUx
+wRN
+xkd
+xkd
+uNF
+mnm
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+nXP
+nXP
+nXP
+aag
+dqw
+uwv
+uwv
+dqw
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+dqw
+uwv
+uwv
+dqw
+aag
+aag
+aag
+vRz
+vRz
+vRz
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(48,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+hUg
+rPC
+vBm
+ykP
+xAj
+xhE
+xhE
+vBm
+hKq
+cdk
+soD
+tdv
+szy
+wdr
+tpn
+aeo
+sIw
+eni
+xrP
+xTp
+pyj
+hTt
+kMH
+tUx
+iTI
+hzJ
+cyZ
+jVa
+jVa
+tHS
+sVc
+tUx
+xJe
+qLt
+xkd
+uNF
+mnm
+ils
+aag
+etE
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+xFD
+ntA
+bAs
+bAs
+bAs
+bDF
+bDF
+bAs
+bTT
+bTT
+bAs
+aag
+aag
+aag
+aag
+aag
+bAs
+bAs
+bDF
+bDF
+bAs
+bTT
+bTT
+bTT
+bAs
+vIA
+xgn
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(49,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+rPC
+hUg
+vBm
+ykP
+xjG
+ssD
+gcT
+rmv
+eRL
+mLJ
+bua
+nNQ
+gcT
+ciF
+tpn
+vrM
+eBW
+eOh
+xrP
+xTp
+pyj
+kfN
+xkd
+qFu
+xkd
+xkd
+qJZ
+jVa
+jVa
+tHS
+xGh
+ycm
+qCo
+pWr
+xkd
+uqa
+mnm
+ils
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+xYN
+jup
+bBA
+bAK
+bCY
+bDO
+bDO
+bDO
+bHI
+bJS
+bAs
+aag
+aag
+aag
+aag
+aag
+bAs
+bHP
+sSc
+sSc
+bDO
+acr
+bPG
+acN
+bBA
+qXM
+gUv
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(50,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+nBc
+hUg
+vBm
+vBm
+vBm
+vBm
+vBm
+vBm
+pEt
+mLJ
+fkn
+gaJ
+gaJ
+gaJ
+gaJ
+tpn
+tpn
+ueo
+tpn
+wCM
+pyj
+opN
+xkd
+uvY
+duT
+xkd
+vdM
+jVa
+wtM
+moB
+sXQ
+cyZ
+jVa
+fJT
+xkd
+ipT
+uNF
+ils
+aag
+eSU
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+ewT
+sIT
+bBA
+hWJ
+bCY
+bDO
+bDO
+bDO
+bHP
+bJT
+bAs
+bAs
+bAs
+bAs
+bAs
+bAs
+bAs
+bNl
+sSc
+sSc
+bDO
+bHP
+bPG
+hpk
+bBA
+fTu
+umT
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(51,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+mUQ
+aou
+vBm
+tJp
+ybb
+tHB
+aEk
+nSM
+ldu
+mLJ
+pYF
+gaJ
+wVV
+wVV
+wVV
+gaJ
+aOY
+wdF
+sdF
+kNi
+pyj
+xIw
+kVZ
+tUx
+iTI
+nXm
+eZH
+jVa
+jVa
+moB
+moB
+dfk
+vzz
+moB
+xkd
+lmk
+uNF
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+thT
+mGL
+gol
+akb
+bCY
+bDO
+bDO
+bDO
+abU
+bHP
+avw
+bKn
+bLk
+bLw
+bKn
+bLk
+avw
+bHP
+sSc
+sSc
+bDO
+bPn
+bPG
+ald
+gol
+nqU
+pch
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(52,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+hKi
+rPC
+vBm
+sQS
+xEc
+grl
+egR
+tak
+lzx
+mLJ
+ugT
+fso
+bRH
+bRH
+bRH
+cuk
+tkV
+jFR
+oRk
+kxM
+jSw
+vBm
+vBm
+qof
+vBm
+vBm
+wRm
+tUx
+vrx
+tUx
+gSV
+eZH
+tUx
+cXi
+xkd
+irr
+uNF
+xEF
+aag
+twB
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+mGL
+fEV
+bBA
+bAN
+bCY
+bDO
+bDO
+bOq
+bPo
+bHP
+avw
+akb
+axk
+bLH
+vuZ
+ald
+avw
+bHP
+sSc
+sSc
+bOq
+bPo
+bPG
+acs
+bBA
+lZB
+nqU
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(53,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+nnF
+rPC
+vBm
+ikM
+pzc
+jjM
+eRL
+eRL
+eRL
+mLJ
+ugT
+qvf
+bRH
+bRH
+bRH
+qvf
+wdF
+lMc
+ycr
+kge
+kDA
+rkL
+eZj
+efh
+mGn
+jkS
+cyZ
+thL
+thL
+thL
+thL
+nYd
+thL
+jVa
+fgR
+hPT
+mnm
+ils
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+tRV
+hJp
+bBA
+bAO
+bCZ
+bDW
+fya
+ohA
+ohA
+ohA
+bKb
+akf
+jbX
+kNY
+jbX
+tuZ
+bKb
+ohA
+ohA
+ohA
+cFh
+bDW
+bPJ
+iuz
+bBA
+vhq
+orv
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(54,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+hUg
+hUg
+vBm
+gqW
+buX
+mLJ
+eRL
+eRL
+eRL
+mLJ
+pWG
+gaJ
+eyg
+gCI
+eyg
+gaJ
+heQ
+lMc
+eOW
+cMl
+lMc
+nxq
+ldu
+kJK
+bja
+jkS
+eZH
+ohJ
+thL
+thL
+tjU
+liZ
+rUk
+jVa
+fgR
+evl
+uNF
+ils
+aag
+rEr
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+hJp
+mGL
+bBA
+bAP
+aqu
+aqu
+bEF
+bNm
+bNm
+bNm
+avw
+bKp
+bLl
+bLJ
+bMS
+bNe
+avw
+bNm
+bNm
+bNm
+bOs
+aqu
+aqu
+bQz
+bBA
+nqU
+cEY
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(55,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+rPC
+hUg
+vBm
+jCa
+cFO
+lNs
+srV
+uzU
+nJo
+inN
+wQk
+gaJ
+gaJ
+gaJ
+gaJ
+gaJ
+tRA
+lMc
+tYW
+cMl
+oeB
+rkL
+ldu
+eRL
+uEK
+vBm
+qJZ
+ohJ
+thL
+thL
+ezX
+uaU
+rUk
+xaM
+fgR
+fQk
+uNF
+ils
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+fNg
+hJp
+bBA
+bBu
+amg
+amg
+bFa
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+alU
+bOM
+amg
+amg
+rAD
+bBA
+nqU
+vhq
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(56,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+hUg
+hUg
+lrq
+lrq
+bVC
+lrq
+lrq
+lut
+eRL
+eRL
+enz
+swn
+vOd
+uCl
+dls
+eGr
+gbX
+rCL
+xHM
+jxK
+hyz
+ltX
+pbh
+rRQ
+rRQ
+iyq
+inG
+omt
+omt
+omt
+omt
+uxa
+iZU
+nhG
+xkd
+mnm
+hgH
+xEF
+aag
+uJk
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+gjv
+mGL
+bBA
+bBu
+amg
+amg
+bFj
+alU
+bId
+bJU
+bKd
+alU
+bLm
+bTG
+bMT
+alU
+bNi
+bNn
+bNq
+alU
+bON
+amg
+amg
+rAD
+bBA
+rpW
+kAs
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(57,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+rPC
+rwS
+lrq
+kTc
+uqo
+wVw
+cqn
+gTx
+eRL
+eRL
+igt
+swn
+daj
+qbt
+exr
+kHa
+luH
+lMc
+ycr
+bju
+goD
+vBm
+vBm
+qof
+vBm
+vBm
+sSm
+thL
+thL
+thL
+thL
+tov
+thL
+sUs
+xkd
+mnm
+uNF
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+oZd
+mGL
+bBA
+bBv
+aqu
+tkq
+bFa
+alU
+neO
+aoi
+avB
+bKq
+ayw
+aoi
+avB
+bKq
+ayw
+aoi
+azA
+alU
+bOO
+tkq
+aqu
+bQG
+bBA
+vht
+vhq
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(58,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+rPC
+nfI
+lrq
+omu
+uqo
+sYB
+cqn
+ldu
+eRL
+eRL
+cWs
+swn
+dcP
+tvA
+dQv
+swn
+xTp
+lMc
+gSi
+bju
+wSm
+jox
+lrV
+tUx
+ntu
+nYP
+tUx
+thL
+oXp
+thL
+thL
+tov
+thL
+xhx
+fgR
+mnm
+uNF
+ils
+aag
+scz
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+nXP
+lAP
+mGL
+bBA
+bBx
+amg
+bEw
+bFk
+bHq
+let
+bJX
+bJX
+bKs
+bLo
+bMO
+bMU
+bNf
+bJX
+bJX
+let
+bHq
+bFk
+bPq
+amg
+rAD
+bBA
+nqU
+rSK
+vRz
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(59,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+rPC
+heV
+lrq
+frJ
+uqo
+ktn
+cqn
+nBb
+mdS
+eRL
+uJs
+swn
+dfO
+doj
+dQv
+swn
+fYn
+qZg
+iXt
+gBi
+wSm
+opN
+xkd
+nlH
+rQY
+xkd
+xMQ
+ezX
+pqF
+rUk
+thL
+iFc
+thL
+tUx
+fgR
+inC
+fQk
+ils
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aag
+aag
+nXP
+tpg
+vmK
+bBA
+bBy
+amg
+aoa
+ald
+alU
+bIn
+bJY
+aoi
+bLh
+bLp
+bMP
+bNa
+bLh
+aoi
+bNo
+bNt
+alU
+akb
+aoa
+amg
+bQE
+bBA
+bVL
+nqU
+vRz
+aag
+aag
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(60,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+ahE
+hUg
+nBc
+lrq
+vsI
+uqo
+xoS
+lrq
+mAT
+lrq
+cxA
+plZ
+kHa
+qPO
+qPO
+wuc
+qPO
+oRZ
+wdF
+xCd
+bqp
+wSm
+kfN
+xkd
+qFu
+xkd
+xkd
+jVa
+ezX
+prY
+rUk
+thL
+thL
+thL
+tUx
+fgR
+uNF
+mKf
+ils
+aag
+okD
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+nXP
+mGL
+mGL
+bBA
+bBz
+aqu
+bEx
+bQt
+alU
+bIw
+bJY
+sta
+rxK
+amX
+bLh
+azA
+pfa
+iLq
+bNo
+bNS
+alU
+bPg
+bEx
+aqu
+bQI
+bBA
+ueh
+nqU
+vRz
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(61,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aad
+aag
+pCi
+hUg
+hUg
+lrq
+mAr
+uqo
+fsT
+jnA
+fDn
+lrq
+tqV
+nBo
+maa
+swn
+plI
+tqe
+qPO
+wvT
+luw
+emp
+uUO
+wSm
+jZm
+wmE
+tUx
+ntu
+vQN
+jVa
+rjw
+tUx
+lnJ
+rjw
+tUx
+jVa
+oEE
+xkd
+uNF
+hFW
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+tRV
+hJp
+mmC
+bBA
+lsV
+amg
+ddz
+ald
+alU
+bIx
+bJZ
+kyN
+bLi
+bLq
+bMR
+bNb
+bNg
+mTm
+gjt
+vJo
+alU
+bPh
+bPC
+amg
+pyL
+bBA
+jNq
+nqU
+rSK
+vRz
+aag
+ajZ
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(62,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aad
+aag
+pCi
+oCL
+hUg
+lrq
+uZY
+uqo
+uqo
+uqo
+iOh
+lrq
+gdo
+nBo
+jJq
+swn
+dHv
+qQM
+qPO
+xTp
+lMc
+jcf
+qUb
+wSm
+jSw
+xkd
+nlH
+uuq
+xkd
+naB
+naB
+pFg
+naB
+naB
+naB
+ydU
+naB
+naB
+uNF
+mnm
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aag
+nXP
+nXP
+hJp
+mGL
+fmS
+bBA
+bBA
+tiR
+bBA
+bBA
+alU
+bIy
+alU
+alU
+alU
+cmI
+alU
+cmJ
+alU
+alU
+alU
+jAi
+jAi
+jAi
+jAi
+aib
+jAi
+jAi
+nrz
+vhq
+nqU
+vRz
+vRz
+aag
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(63,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aad
+aag
+pCi
+rPC
+aou
+lrq
+mAr
+uqo
+uvy
+tfO
+fsz
+lrq
+irJ
+nBo
+pJi
+swn
+jAG
+tqe
+qPO
+xTp
+lMc
+jcf
+eUU
+wSm
+cqM
+xkd
+xkd
+xkd
+xkd
+naB
+eoP
+fgl
+xEe
+naB
+xEe
+fgl
+deb
+naB
+lmk
+uNF
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+nXP
+nXP
+nXP
+hJp
+hJp
+uNL
+uNL
+uNL
+tVf
+mGL
+oxp
+kcp
+bWJ
+nar
+alU
+bXo
+oCi
+bLs
+mZM
+aoi
+grG
+bXY
+alU
+xsW
+uBn
+wJw
+bEz
+bzA
+dRw
+bzy
+bzy
+bzy
+vhq
+nqU
+vRz
+vRz
+vRz
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(64,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+bdH
+bdH
+aad
+pCi
+pCi
+hUg
+tYB
+lrq
+noo
+noo
+noo
+lrq
+lrq
+lrq
+fNA
+nBo
+cQv
+qPO
+qPO
+wuc
+qPO
+wvT
+luw
+emp
+dGD
+wSm
+lfW
+emp
+vli
+rSH
+xYj
+naB
+aSS
+pHp
+poZ
+naB
+jkV
+pHp
+kOi
+naB
+xCj
+uNF
+xEF
+xEF
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+jpN
+hJp
+mGL
+hJp
+mGL
+uNL
+hJp
+mGL
+poR
+mGL
+pNp
+kcp
+bTS
+bIA
+alU
+uDn
+bKf
+bLs
+bLj
+aoi
+bNk
+ecZ
+alU
+bNW
+uBn
+fut
+pqQ
+pqQ
+pqQ
+bzA
+rEu
+bzy
+vhq
+nqU
+vhq
+ioj
+mjR
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(65,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+bdH
+bdH
+aad
+pCi
+msV
+rPC
+naf
+cQv
+vcG
+lYZ
+olv
+dxm
+nMu
+uFp
+ePB
+nBo
+tsX
+xSA
+ugs
+wVY
+lEv
+iQg
+jpQ
+tsX
+jOu
+wSm
+pyj
+vsJ
+kjN
+rvo
+oIc
+naB
+xro
+fgl
+wvI
+naB
+wvI
+fgl
+qmX
+naB
+lTK
+mnm
+uNF
+xEF
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+bwF
+hJp
+mGL
+hJp
+oPI
+uNL
+hJp
+kcp
+kcp
+iqp
+kcp
+kcp
+jgl
+kcp
+alU
+alU
+alU
+mBp
+alU
+cmJ
+alU
+alU
+alU
+bOe
+nrt
+qyF
+ecR
+uOc
+uOc
+uOc
+bPj
+bzy
+piO
+vhq
+nqU
+nqU
+rSK
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(66,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+bdH
+bdH
+aad
+pCi
+dSA
+rPC
+cQv
+cQv
+geX
+tFv
+pGT
+vkM
+jvc
+ajj
+ajj
+nBo
+xps
+jpQ
+jpQ
+wVY
+eOk
+pFa
+ctn
+wqu
+eeN
+cMl
+fHS
+naB
+naB
+naB
+naB
+naB
+naB
+rkh
+lvZ
+naB
+fuX
+rra
+naB
+naB
+naB
+mnm
+uNF
+xEF
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+mGL
+mGL
+hJp
+mGL
+dqd
+uNL
+hJp
+kcp
+nYS
+bTS
+bTS
+lxo
+qcy
+kcp
+bAg
+edM
+egq
+bLt
+bXX
+bKh
+egq
+bKh
+bNp
+fsd
+bKj
+jjs
+jjs
+jjs
+jjs
+jjs
+jYd
+bSv
+bSv
+bSv
+bSv
+bSv
+nqU
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(67,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+pCi
+hUg
+rPC
+cQv
+eaf
+bEv
+tWg
+rZR
+cqJ
+isH
+vwO
+scD
+rXC
+vyE
+nwz
+nwz
+mkk
+wir
+jnT
+qNv
+wqu
+eeN
+cMW
+qEy
+ooR
+xvw
+nBu
+tcP
+lFs
+sIY
+qyd
+uDp
+tNj
+uDp
+qyd
+icX
+xQD
+naB
+uNF
+lre
+xEF
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+hJp
+hJp
+mGL
+pzZ
+ijp
+uNL
+mGL
+kcp
+bTR
+iEg
+oQM
+aqI
+aqI
+kcp
+bzA
+bBB
+bBB
+bLu
+bBB
+bBB
+bBB
+bBB
+bNp
+mYY
+nka
+afz
+afz
+afz
+afz
+afz
+iDd
+qih
+bTH
+foN
+cDZ
+bSv
+pch
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(68,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aac
+aag
+pCi
+mNR
+hUg
+cQv
+eaf
+bEv
+fLn
+rXd
+dvT
+qSl
+ajj
+ukS
+wZa
+tsX
+ezU
+dxT
+jpQ
+iQg
+bRm
+ecq
+tsX
+tkV
+pyj
+pyj
+luC
+elq
+qmE
+luC
+uVF
+uQm
+qPD
+qPD
+qPD
+qPD
+qPD
+bND
+jaP
+naB
+uNF
+rQU
+xEF
+aag
+ajY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aLE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+thT
+hJp
+uNL
+uNL
+uNL
+uNL
+mGL
+kcp
+lxW
+hPh
+wGX
+bFr
+ppe
+kcp
+bzA
+bKh
+bKh
+hcs
+kCS
+kCS
+kCS
+kCS
+hHJ
+iWL
+bkD
+afz
+afz
+afz
+afz
+afz
+iDd
+bSv
+tjw
+bTH
+bTV
+bSv
+nqU
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bTg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(69,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+tCb
+aou
+cQv
+eaf
+bEv
+fLn
+avz
+dvT
+nHV
+ajj
+iKX
+cQv
+tsX
+tsX
+tsX
+epu
+oLF
+tsX
+tsX
+tsX
+vyi
+vyi
+vyi
+naB
+naB
+naB
+naB
+dqV
+mdJ
+vXQ
+vXQ
+uNe
+uUs
+nqZ
+ekg
+usr
+naB
+inC
+mKf
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+mGL
+hJp
+uNL
+qDv
+aLk
+uNL
+xCR
+kcp
+wTN
+kZN
+rgK
+hbu
+iYe
+bJl
+bKa
+bKa
+bKa
+gCl
+bzA
+bzA
+bzA
+bzA
+bNp
+pqQ
+nka
+afz
+afz
+afC
+afz
+afz
+bRx
+bSv
+ifb
+bTH
+bSv
+xVT
+kAs
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(70,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+oCL
+hUg
+cQv
+eaf
+bEv
+qRo
+rXd
+dvT
+bAM
+wZa
+cQv
+cQv
+tHr
+mqg
+eiK
+vka
+uwN
+fbv
+xuZ
+mSs
+xuZ
+xuZ
+xuZ
+rCU
+rEY
+gxU
+naB
+kyP
+qPD
+qPD
+qPD
+uQm
+pIH
+naB
+nOe
+nOe
+naB
+bIi
+fQk
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+tRV
+mGL
+uNL
+kmM
+eqk
+uNL
+hJp
+kcp
+oMi
+bAZ
+bTS
+bTS
+niR
+kcp
+bzA
+bKh
+bKh
+bLt
+bzA
+bKh
+bKh
+bKh
+bNp
+pqQ
+fti
+afz
+afz
+afz
+afz
+afz
+iDd
+bSv
+aIX
+aIX
+bSv
+oES
+eXo
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(71,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+hUg
+rPC
+cQv
+bop
+jeK
+mWe
+rXd
+dvT
+ieo
+vxC
+ldD
+ceZ
+jnD
+hUW
+hiM
+rWs
+qNR
+hiM
+hiM
+hiM
+hiM
+rWs
+rWs
+rQt
+cgT
+xuc
+naB
+pZV
+gMf
+ekg
+ekg
+uQm
+nnz
+vrQ
+mLI
+qyd
+vrQ
+mnm
+sIk
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+hJp
+mGL
+hKe
+hJp
+hJp
+uNL
+hJp
+kcp
+kcp
+kcp
+sXE
+kcp
+kcp
+kcp
+bzA
+bBB
+bBB
+bLt
+bzA
+bKh
+bBB
+bBB
+bNp
+xgx
+nka
+afz
+afz
+afz
+afz
+afz
+iDd
+bSv
+cop
+cop
+bSv
+vhq
+nqU
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(72,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+pCi
+hUg
+rPC
+cQv
+cQv
+cQv
+cQv
+cQv
+dvT
+ieo
+vxC
+ldD
+vGA
+hUW
+dHd
+vka
+lnt
+uVA
+uVA
+uVA
+uVA
+uVA
+gde
+uVA
+wIQ
+xWv
+aQb
+naB
+naB
+mtl
+hwQ
+hwQ
+okM
+mtl
+mtl
+naB
+naB
+naB
+mnm
+hPT
+xEF
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+hJp
+mGL
+uNL
+aSY
+hJp
+uNL
+hJp
+dqd
+kcp
+bTU
+gZK
+bTS
+lyX
+kcp
+bAr
+bKh
+bBB
+bLt
+bzA
+bKh
+bBB
+bKh
+bNp
+fsd
+bKj
+eGg
+eGg
+eGg
+eGg
+eGg
+jYd
+bSv
+kBY
+bTn
+bSv
+vhq
+vhq
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(73,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aag
+aag
+pCi
+hKi
+hUg
+aFN
+hUg
+cXZ
+jIV
+vxM
+gaJ
+uzx
+uue
+vxM
+iuE
+uwN
+vka
+pRO
+kqy
+awz
+awz
+cZh
+cZh
+cZh
+awz
+awz
+jfK
+wIQ
+mPj
+omy
+xpo
+mtl
+pGG
+qRT
+djm
+hgF
+mtl
+uNF
+hUc
+wNU
+mnm
+sIk
+xEF
+aag
+aag
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+nXP
+nXP
+nXP
+nXP
+lgY
+uNL
+uNL
+uNL
+lgY
+uNL
+mGL
+hJp
+kcp
+onY
+wdf
+bTS
+kcp
+kcp
+bzy
+bKh
+bBB
+bLt
+bzA
+bKh
+bBB
+bKh
+bzy
+tBz
+fBD
+ntt
+jXk
+hdh
+hdh
+hdh
+bRD
+bSv
+bSv
+bSv
+bSv
+mzo
+qOU
+vRz
+vRz
+vRz
+vRz
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(74,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+adG
+adG
+adG
+adG
+adG
+gqq
+iCz
+aFN
+rPC
+rPC
+kDb
+vxM
+wVV
+mKh
+mVi
+vxM
+udK
+mwA
+lnt
+cgO
+awz
+awz
+nID
+wPF
+eHx
+uKd
+oER
+awz
+awz
+mgj
+wIQ
+jHh
+jUY
+fbY
+qVF
+oog
+qaJ
+czB
+mtl
+mnm
+uNF
+wNU
+uNF
+mrB
+tuA
+tuA
+tuA
+tuA
+tuA
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+hJp
+dPU
+hJp
+mGL
+mGL
+khS
+hJp
+crc
+hJp
+qee
+mGL
+hzM
+kcp
+xNz
+utK
+rKA
+kcp
+kcp
+bzy
+bXs
+bBB
+bLt
+bzA
+bKh
+bBB
+bXZ
+bzy
+bAg
+bBB
+qJN
+jjZ
+bzH
+bBB
+bzA
+cBl
+bRU
+vhq
+eJh
+nqU
+rcH
+vhq
+vhq
+nqU
+jTu
+nqU
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(75,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+aeK
+aeK
+bur
+hdd
+akC
+akC
+akC
+akC
+cVJ
+rPC
+jvJ
+vxM
+sVy
+mKh
+mVi
+vxM
+bmz
+wSR
+mMV
+awz
+awz
+aJp
+jgJ
+jgJ
+jgJ
+jgJ
+jgJ
+mZb
+awz
+awz
+woy
+laO
+nRH
+fbY
+qVF
+oog
+kHK
+wfL
+mtl
+mnm
+dGc
+kCi
+kCi
+kCi
+kCi
+hjA
+nIE
+jKn
+pyi
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPy
+aPY
+aQv
+aQv
+aQv
+aQv
+aQv
+aQv
+aQv
+aQv
+bcm
+bcm
+kcp
+kcp
+kcp
+kcp
+kcp
+kcp
+kcp
+bzy
+bZL
+cat
+caC
+caD
+bZL
+cat
+bZL
+bzy
+bzy
+bzy
+bzy
+bzy
+bzy
+bzy
+bzy
+bzy
+bzy
+bJh
+bJh
+cmH
+bJh
+bJh
+bJh
+bJh
+bJh
+ces
+bSg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(76,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+afa
+aeK
+bur
+wdI
+sFf
+bbV
+bzz
+akC
+cRc
+rPC
+hUg
+vxM
+eyg
+giZ
+gTl
+vxM
+pZS
+pEB
+jUY
+qwp
+aVI
+jmY
+rHc
+xhZ
+xhZ
+xhZ
+rHc
+qyo
+udx
+qwp
+pZS
+jHh
+jUY
+fbY
+uLJ
+oog
+sBH
+vfv
+mtl
+mnm
+dGc
+kCi
+sDD
+kOv
+cRv
+sQF
+nIE
+jKn
+vjg
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPy
+dhZ
+aQv
+bbn
+bmu
+bot
+bpU
+rFB
+bmu
+aQv
+lYN
+byr
+aXh
+bAQ
+aXj
+bDH
+xyw
+bIo
+bKt
+bLD
+aYt
+btO
+btN
+xyw
+aYt
+btO
+aYt
+mIz
+xyw
+bYq
+bZi
+bZO
+caM
+aXj
+qUh
+xyw
+ccG
+bJh
+cax
+cet
+cfx
+cgG
+cex
+dfc
+bJh
+bJO
+bSg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(77,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+aeK
+aeK
+bur
+xFP
+nIt
+adu
+aHZ
+akC
+oCL
+rPC
+hUg
+vxM
+vxM
+tXs
+oCX
+vxM
+vkR
+wsD
+jUY
+qwp
+eei
+jmY
+iwW
+sTm
+oSq
+sTm
+tdT
+qyo
+itX
+qwp
+vGA
+uwN
+uVd
+mtl
+mtl
+qYH
+mtl
+mtl
+mtl
+uNF
+uNF
+kCi
+uAj
+qfa
+btD
+vmW
+nIE
+jKn
+pyi
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bhh
+aPZ
+bhh
+bjL
+bmw
+kIm
+bmw
+brO
+bmx
+bvT
+btO
+aYt
+bzQ
+bAS
+baG
+bDI
+btO
+bhT
+bKu
+btO
+aYt
+wqh
+bym
+brW
+brW
+bve
+bwn
+bVM
+bVM
+bAh
+bZj
+bVM
+bwn
+bVM
+bVM
+bwn
+bVM
+cdb
+cdw
+bGp
+cfy
+rBk
+cfy
+cim
+cjl
+bRz
+cjm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(78,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+adG
+amz
+amz
+aly
+nkx
+bbZ
+btv
+akC
+dDC
+rPC
+hUg
+vxM
+wVV
+erx
+dsw
+vxM
+kfE
+wsD
+jUY
+qwp
+rBx
+jmY
+iwW
+sTm
+gwR
+sTm
+tdT
+qyo
+pbW
+qwp
+cDn
+uwN
+jUY
+mtl
+lNF
+rkK
+cIK
+mtl
+tzj
+uNF
+bbR
+kCi
+eqI
+ssZ
+btD
+awC
+uMj
+uMj
+tuA
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bhh
+aPZ
+bhh
+bjM
+bmx
+eBC
+aZB
+qld
+kyZ
+bvT
+btO
+aYt
+aYt
+aYt
+aYt
+bdK
+aYt
+bhU
+bjR
+aYt
+aYt
+wqh
+bHB
+xyw
+btO
+bcc
+aYt
+aYt
+aYt
+bAi
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+btO
+cdc
+jdk
+mLu
+erS
+pZo
+cdx
+cin
+cjm
+bRA
+cjm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(79,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aeE
+maH
+ayq
+cfE
+cfE
+pvP
+adu
+aHZ
+akC
+eKM
+ake
+rPC
+vxM
+dFC
+bRH
+bRH
+vxM
+xDn
+pEB
+jUY
+awz
+wkH
+hmS
+mWV
+jZu
+sco
+fqO
+lIp
+hWO
+fqc
+awz
+gGr
+jHh
+sCQ
+mtl
+pJE
+wPk
+hRy
+mtl
+tzj
+uNF
+bVT
+kCi
+nwW
+btD
+btD
+rVN
+rVN
+vly
+vcJ
+pun
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bhh
+aPZ
+bhh
+bjM
+bmx
+bmx
+bmx
+brP
+qTZ
+bvT
+btO
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+bwm
+bHB
+xyw
+btO
+bSR
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+btO
+cdc
+nEs
+cev
+cdx
+cdx
+cdx
+cin
+cjm
+bRA
+cjm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(80,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aeE
+aie
+aTy
+adu
+adu
+adu
+adu
+aHZ
+akC
+akC
+tRX
+uzm
+vxM
+eyg
+eyg
+oWI
+vxM
+nNv
+pEB
+jUY
+qwp
+wyt
+jmY
+iwW
+dCr
+gwR
+sTm
+tdT
+qyo
+tsy
+qwp
+ora
+laO
+rKQ
+mtl
+qHF
+fnl
+mtl
+mtl
+utZ
+pUJ
+pUJ
+kCi
+nRR
+btD
+btD
+btD
+btD
+tnb
+oit
+pun
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bhh
+aPZ
+bhh
+bjN
+bmy
+pAR
+hHR
+brQ
+btp
+bvV
+bvf
+bdL
+bvf
+bvf
+bvf
+bdL
+bvf
+bvf
+bvf
+bvf
+bvf
+bvf
+bIe
+baN
+bvf
+bvf
+bvf
+bvf
+bvf
+bvf
+bvf
+bdL
+bvf
+bvf
+bvf
+bdL
+bvf
+cdd
+cdy
+cew
+cfz
+sSY
+kZA
+cio
+cjm
+bRA
+cjm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(81,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aeE
+aig
+brf
+cSC
+cSC
+nIt
+adu
+hxG
+akC
+fvu
+qkn
+hUg
+vxM
+vxM
+vxM
+vxM
+vxM
+xSz
+pEB
+jUY
+qwp
+sUE
+jmY
+iwW
+dCr
+oSq
+sTm
+tdT
+qyo
+tsy
+qwp
+pZS
+jHh
+vCx
+mtl
+mtl
+mtl
+mtl
+qFl
+mnm
+xyz
+gpe
+kCi
+nNt
+vqC
+btD
+pPN
+pPN
+gKF
+ndZ
+pun
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPy
+hhe
+aQv
+bjO
+bmu
+bou
+bpW
+rFB
+bmu
+aQv
+vCg
+bHB
+xyw
+xyw
+xyw
+bdM
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xpT
+xyw
+xyw
+xyw
+bHB
+osx
+bJh
+cdz
+aTq
+cfA
+cgH
+cex
+dfc
+bJh
+tdK
+bSg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(82,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+adG
+amz
+amz
+aly
+wmg
+adu
+cqQ
+afT
+agU
+dIl
+xpd
+mlp
+hiM
+hiM
+qRj
+xuZ
+jnD
+wsD
+jUY
+qwp
+iiZ
+jmY
+rHc
+lAy
+wjq
+wjq
+rHc
+qyo
+tsy
+qwp
+vGA
+uwN
+pYX
+xuZ
+pcj
+hXm
+fZq
+dVm
+qkb
+vnY
+vnY
+bpd
+bqT
+vZv
+vjK
+awC
+uMj
+uMj
+tuA
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPy
+aPY
+aQv
+aQv
+aQv
+aQv
+aQv
+aQv
+vak
+ovP
+xyw
+bHB
+xyw
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+puI
+aYt
+aYt
+aYt
+aYt
+bfY
+baR
+bfJ
+btO
+dTI
+btO
+aYt
+xyw
+bHB
+xyw
+bcm
+mzo
+mzo
+mzo
+mzo
+mzo
+mzo
+mzo
+cjK
+bSg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(83,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+aeK
+aeK
+bur
+hdd
+pvP
+adu
+frF
+akC
+fRN
+avl
+lFb
+ail
+vka
+vka
+mPj
+mIy
+eEw
+rTk
+nRH
+awz
+awz
+fRr
+dmv
+cHE
+dmv
+dmv
+dmv
+olU
+awz
+awz
+vSN
+mPj
+rWs
+inh
+ewr
+lPC
+mgy
+wWT
+xuB
+vcK
+czJ
+kCi
+nRR
+btM
+vjK
+dUZ
+nIE
+jKn
+pyi
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+ndx
+uNL
+nDd
+soS
+sgy
+nsu
+iyQ
+rod
+psy
+xyw
+bHB
+gjm
+aYu
+ilG
+aYt
+bfJ
+btO
+btO
+btO
+btO
+aYt
+bcm
+bcm
+btG
+btO
+btO
+btO
+btO
+aYt
+bBN
+bcm
+caN
+aYu
+bcb
+bHB
+btO
+bcm
+tlI
+jEs
+kCT
+lsb
+fcG
+ufp
+mzo
+qQP
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(84,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+afa
+aeK
+bur
+wdI
+aHY
+tyK
+iKI
+akC
+akC
+ail
+lGG
+age
+age
+kzy
+wIQ
+jHh
+vka
+lnt
+ciN
+sUg
+qwp
+vYM
+fJm
+aAq
+iah
+mGe
+dCx
+rpK
+qwp
+xmg
+ggt
+wIQ
+vka
+jHh
+lnt
+ckP
+qFl
+qFl
+lIV
+gsH
+qFl
+kCi
+cfk
+uws
+cRv
+nwx
+nIE
+jKn
+vjg
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+hJp
+uNL
+gka
+bwQ
+oNf
+uNL
+aNw
+kXJ
+kVX
+xyw
+bHB
+wqh
+xyw
+bcc
+aYt
+bfK
+aYt
+aYt
+aYt
+aYt
+aYt
+anW
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+btO
+sEq
+wqh
+xyw
+bcc
+bHB
+aYt
+bcm
+dqH
+kCT
+kCT
+kCT
+kCT
+kCT
+bLb
+dQH
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(85,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+aeK
+aeK
+bur
+xFP
+akC
+akC
+akC
+akC
+fcF
+avl
+lFb
+fvu
+age
+age
+vSN
+jHh
+lnt
+dUE
+awz
+awz
+awz
+jKF
+awz
+rGE
+awz
+lsp
+awz
+jKF
+awz
+awz
+awz
+sTo
+wIQ
+jHh
+jUY
+qFl
+qFl
+gpe
+xuB
+vcK
+mBA
+kCi
+kCi
+kCi
+kCi
+vmW
+nIE
+jKn
+pyi
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+hJp
+sIT
+sIT
+sIT
+sIT
+sIT
+aNj
+xmv
+kVX
+xyw
+bHB
+sXB
+baH
+bcd
+bdO
+bfL
+baH
+bjS
+bdO
+bfL
+baH
+bjS
+bdO
+bfL
+baH
+bjS
+bdO
+bfL
+baH
+bjS
+bdO
+bEA
+baH
+fVz
+bHB
+bBN
+bcm
+vVh
+kCT
+kCT
+kCT
+kCT
+wgU
+mzo
+kWY
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(86,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+adG
+adG
+adG
+adG
+adG
+adG
+puK
+avl
+dUI
+avl
+avl
+lFb
+fvu
+xDp
+age
+xDn
+uwN
+wiN
+awz
+awz
+awz
+awz
+aGb
+qVS
+aUe
+gAl
+aVG
+aGj
+aVR
+awz
+awz
+awz
+awz
+oWg
+uwN
+jUY
+qFl
+rnM
+gpe
+sDy
+ukU
+bfP
+fvv
+vcK
+sJI
+tuA
+tuA
+tuA
+tuA
+tuA
+tuA
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+tRV
+sIT
+jNt
+iNZ
+lQj
+sIT
+obG
+kdt
+kVX
+xyw
+bHB
+aZO
+baI
+baI
+baI
+baI
+baI
+plk
+twz
+gdO
+baI
+baI
+baI
+baI
+baI
+fXM
+rFM
+nBt
+wkV
+oft
+baI
+baI
+baI
+bGF
+bHB
+aYt
+bcm
+iQx
+kCT
+iuu
+fHc
+kpY
+hTu
+mzo
+bRF
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(87,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+pCi
+avl
+nMc
+ayP
+iJf
+iJf
+sFZ
+avl
+tCb
+age
+pNa
+iCu
+awz
+awz
+agb
+azC
+awz
+nne
+aGj
+oSw
+vIu
+aVH
+aGj
+iQj
+awz
+oQs
+nFm
+awz
+ceE
+eMP
+faX
+qFl
+rEn
+mnm
+mYs
+mnm
+sDy
+cUv
+cNe
+pLZ
+xEF
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+hJp
+sIT
+vLh
+mGL
+qHb
+sIT
+hdR
+hdR
+hJz
+hmy
+bHB
+aZP
+baI
+baI
+baI
+keG
+kMt
+raU
+syy
+pDJ
+ojz
+ojz
+okE
+wEl
+ivb
+oFU
+qgP
+rLe
+qBy
+eOd
+baI
+baI
+lMA
+bGG
+bHB
+btO
+bcm
+lyi
+kCT
+kCT
+kCT
+kCT
+kCT
+mzo
+dQH
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(88,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+pCi
+dRV
+bZg
+kcH
+kcH
+kcH
+kcH
+kcH
+kcH
+kcH
+kWq
+qnh
+aVG
+awz
+afZ
+afZ
+awz
+xTR
+awz
+cRb
+awz
+opC
+awz
+xTR
+awz
+afZ
+afZ
+awz
+dFR
+qnh
+ouW
+mKq
+dHZ
+dHZ
+aES
+aES
+aES
+aES
+sDy
+cNe
+xEF
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+mfe
+sIT
+eNx
+mGL
+mGL
+vKf
+mGL
+mGL
+rII
+xyw
+bHB
+aZQ
+baI
+baI
+baI
+tKn
+tRT
+iAI
+kep
+iAI
+vma
+vma
+iAI
+ofB
+cnG
+glk
+wra
+rHL
+dnr
+oAD
+tRd
+baI
+rWi
+bGH
+bHB
+btO
+bcm
+ksP
+gdi
+piX
+kCT
+kCT
+kCT
+mzo
+dQH
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(89,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+pCi
+pCi
+pCi
+pCi
+lFb
+avl
+kcH
+kcH
+kcH
+kcH
+xKT
+eqN
+aBP
+aKa
+qnh
+ewS
+oBA
+aom
+aom
+oUG
+aom
+bzR
+qnh
+oUG
+aKa
+bzR
+aom
+oUG
+aom
+aom
+mJe
+iVy
+qnh
+aKa
+rrB
+aGr
+eDu
+tKr
+uNg
+cLN
+aES
+gpe
+xuB
+xEF
+xEF
+xEF
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+hJp
+sIT
+mIB
+mGL
+fGY
+wUO
+gYB
+pXQ
+kYa
+xyw
+bHB
+aZR
+bmT
+kAa
+lmn
+cve
+wBV
+iGd
+rIL
+rIL
+rIL
+rIL
+rIL
+fYO
+iAI
+ltR
+iAI
+ofB
+iAI
+ofB
+kHc
+kBC
+kAr
+bGI
+bHB
+xyw
+bcm
+fAt
+kCT
+kCT
+kCT
+kCT
+iRS
+mzo
+wWf
+bIO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(90,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aad
+aag
+aag
+pCi
+fqu
+kTM
+puK
+lFb
+avl
+kcH
+rlf
+soq
+eYQ
+eqN
+dmA
+hyQ
+iur
+lTt
+haB
+dvl
+miE
+dCK
+esF
+mQc
+mQc
+wgk
+gaQ
+aIl
+aGv
+aGv
+dvl
+fYf
+uCW
+omb
+haB
+gtp
+qfA
+tYX
+tpD
+xfO
+qCy
+qCy
+qCy
+jxB
+gpe
+xuB
+gpe
+gpe
+gpe
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+mGL
+sIT
+sIT
+rUU
+sIT
+sIT
+uNL
+uNL
+uNL
+xyw
+bHB
+aZO
+bAC
+kOA
+uRG
+iph
+ind
+eJu
+iAI
+ofB
+iAI
+ofB
+iAI
+eJu
+rIL
+rIL
+rIL
+rIL
+rIL
+rIL
+dQc
+baI
+baI
+bGF
+bHB
+eEc
+mzo
+mzo
+kCT
+xVj
+vox
+kCT
+hTu
+mzo
+wWf
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(91,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aad
+aag
+aag
+pCi
+huX
+unJ
+iJf
+mBk
+nUy
+kcH
+rBa
+nPs
+nPs
+nPs
+rJD
+hyQ
+fEk
+hlU
+wVW
+feD
+azL
+aJw
+iBY
+wVW
+wVW
+wVW
+wVW
+wVW
+wVW
+wVW
+dmg
+vMI
+gII
+oPy
+wVW
+fDU
+uiZ
+mKq
+qCy
+qCy
+qCy
+qCy
+qCy
+jxB
+gpe
+gDq
+tJo
+bGr
+hnV
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+rxk
+uNL
+aqc
+hJp
+qbd
+cQF
+hqs
+jFh
+uNL
+wlb
+bHB
+aZP
+bAC
+cKK
+eTN
+lyQ
+neP
+xtW
+xDs
+xLI
+igh
+vfe
+bFJ
+tpu
+rIL
+ftf
+rIL
+ftf
+rIL
+ftf
+vma
+baI
+baI
+bGG
+bHB
+bGK
+meN
+xRc
+qPg
+oas
+mni
+kCT
+fIf
+mzo
+wWf
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(92,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aad
+aag
+aag
+pCi
+nMc
+tGf
+avl
+avl
+qtS
+kcH
+rIW
+oGx
+wvU
+yiX
+lIa
+hyQ
+aic
+aov
+wVW
+wVW
+sEp
+wVW
+wVW
+wVW
+swH
+xDH
+wVW
+gcI
+sEM
+wVW
+wVW
+wVW
+osz
+wVW
+wVW
+aKn
+aKz
+pQy
+jhW
+mWD
+wmT
+jhW
+mWD
+jxB
+fGN
+dtN
+gpe
+xuB
+gpe
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nXP
+mGL
+qee
+hJp
+mGL
+qaZ
+mGL
+hJp
+mGL
+mBb
+wqh
+bHB
+aZQ
+bAC
+ehg
+hof
+ivY
+sRP
+eJu
+iAI
+ofB
+iAI
+ofB
+iAI
+eJu
+rIL
+rIL
+rIL
+rIL
+rIL
+rIL
+vma
+baI
+baI
+bGH
+bHB
+cuy
+meN
+dNe
+pzO
+kCT
+kCT
+kCT
+eKg
+pcD
+lZO
+vRz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(93,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aai
+aai
+pCi
+lFb
+avl
+avl
+agj
+agj
+agj
+agj
+agj
+agj
+kcN
+kcN
+agj
+akL
+aov
+wVW
+apo
+fHh
+wVW
+lZs
+mmG
+sni
+ayz
+dAX
+aQg
+vpV
+xIo
+aGp
+wVW
+aDv
+aHK
+wVW
+aKn
+aKy
+mKq
+aES
+aES
+aES
+aES
+aES
+aES
+aES
+aES
+gpe
+uEv
+gpe
+xEF
+xEF
+xEF
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+nXP
+hJp
+uNL
+afd
+hJp
+slP
+rsx
+jFh
+cQF
+uNL
+pyC
+bHB
+aZR
+eir
+rsm
+hpw
+uhg
+ovu
+niK
+rIL
+rIL
+rIL
+rIL
+rIL
+axz
+iAI
+jKJ
+uFM
+ofB
+iAI
+ofB
+njX
+xJX
+pIj
+bGI
+bHB
+kwQ
+meN
+dNe
+pzO
+wtd
+kCT
+nLa
+wgU
+mzo
+dQH
+vRz
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(94,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+ahE
+iuT
+naf
+lFb
+avl
+agj
+agj
+aew
+bCO
+hvH
+hvH
+hvH
+kcN
+cod
+oqA
+aic
+aov
+wVW
+arF
+alX
+auQ
+awm
+avS
+nwD
+asR
+pbs
+pbV
+aPB
+aJG
+aGq
+auQ
+aIf
+aEA
+wVW
+aKn
+iJB
+mKq
+aVU
+aRq
+bHG
+ceK
+sxD
+bhJ
+bHG
+aES
+aES
+mtE
+gpe
+cEg
+hgm
+ils
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+nXP
+tRV
+uNL
+uNL
+agi
+uNL
+uNL
+uNL
+uNL
+uNL
+cCE
+bHB
+aZO
+baI
+baI
+baI
+fGH
+mGP
+iAI
+ofB
+iAI
+vma
+vma
+iAI
+ofB
+idu
+jor
+vbI
+iDQ
+nvi
+iNc
+qVT
+baI
+xyA
+bGF
+bHB
+iAw
+mzo
+mzo
+kCT
+kCT
+kCT
+dlp
+hTu
+mzo
+vot
+vRz
+aKQ
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+"}
+(95,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+ahE
+afc
+avl
+lFb
+avl
+agj
+yeo
+agc
+bIz
+agc
+hvH
+lQq
+kcN
+cod
+oqA
+aic
+aov
+wVW
+arG
+alX
+lQG
+oPE
+alZ
+auT
+aBR
+awD
+bZJ
+aRt
+axp
+aPI
+lQG
+aIf
+aEB
+wVW
+aKi
+amY
+aVg
+aVV
+aWV
+aZy
+ceK
+aES
+bpe
+brS
+rOs
+aES
+kwz
+gpe
+gpe
+gAd
+ils
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+mGL
+hJp
+uNL
+aas
+alI
+agw
+anB
+ajp
+vdJ
+bJo
+amo
+bHB
+aZP
+baI
+baI
+baI
+nyZ
+pBU
+mMp
+gNr
+vXx
+mpR
+mpR
+cKN
+jAq
+bhr
+fXM
+goO
+ixY
+rdX
+oft
+baI
+baI
+ppQ
+bGG
+bHB
+btO
+xjW
+gks
+kCT
+kCT
+kCT
+mQW
+kCT
+mzo
+gJd
+mjR
+aKQ
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(96,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+ahE
+aiV
+wBY
+hJJ
+qCi
+agj
+eBo
+agc
+agc
+agc
+ahY
+mXj
+kcN
+kcN
+agj
+amI
+aKq
+luZ
+alX
+alX
+avY
+alX
+alX
+alX
+vNW
+pON
+vRb
+alX
+alX
+alX
+avY
+aIf
+alX
+eRu
+aKq
+aKz
+mKq
+aUk
+aWW
+aGr
+uvt
+aES
+aES
+aES
+aES
+aES
+gxk
+hiQ
+wVP
+sed
+ils
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+mGL
+hJp
+uNL
+aga
+alQ
+amR
+adg
+cdF
+sgw
+bJo
+gRP
+bHB
+aZQ
+baI
+baI
+baI
+baI
+baI
+xMb
+hLy
+hCc
+baI
+baI
+baI
+baI
+baI
+oFU
+xCu
+rPD
+tMa
+eOd
+baI
+baI
+baI
+bGH
+bHB
+btO
+bcm
+hit
+kCT
+kCT
+fjO
+kCT
+vGy
+mzo
+dQH
+nnc
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(97,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+pCi
+kwS
+avl
+avl
+lIh
+agj
+oMM
+agc
+agc
+glU
+rDd
+mXj
+akk
+alb
+agj
+aic
+aKq
+uTU
+alX
+alX
+aqN
+avY
+alX
+alX
+paL
+euV
+mJu
+alX
+alX
+avY
+aqN
+aIf
+alX
+uTU
+aKq
+aKz
+mKq
+ceK
+lcy
+iTw
+ceK
+sxD
+bhJ
+bHG
+nis
+aES
+nSU
+xuB
+lrb
+hnV
+xEF
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+nun
+mzb
+uNL
+aav
+amj
+agG
+anD
+adg
+ajB
+bJo
+xjK
+rgy
+bvf
+anS
+aog
+bdU
+bfV
+baM
+bkd
+bdU
+bfV
+baM
+bkd
+bdU
+bfV
+baM
+vbf
+vbf
+vbf
+yeN
+gzn
+iGQ
+bED
+baM
+bcb
+bHB
+aYt
+bcm
+uKk
+kCT
+kCT
+kCT
+kCT
+xwq
+mzo
+dQH
+gMx
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(98,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aad
+ahE
+avr
+avl
+hCo
+lIh
+agj
+kFk
+hvH
+hvH
+hvH
+ahZ
+mXj
+akl
+alc
+agj
+bFA
+aov
+wVW
+arR
+atO
+atO
+atO
+awt
+aqN
+rKd
+aAA
+xMB
+aqN
+ays
+atO
+atO
+cvZ
+asN
+wVW
+aTj
+aKz
+mKq
+bFC
+vWA
+cqY
+ceK
+aES
+bpe
+brS
+cpj
+aES
+fxO
+xuB
+cKt
+mnm
+ils
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+mGL
+pGP
+uNL
+aay
+adg
+amU
+anK
+ccJ
+ajL
+bJo
+bwl
+bHB
+xyw
+puI
+aol
+aYt
+aYt
+puI
+aYt
+pcl
+gHZ
+pcl
+gHZ
+bHD
+api
+aYt
+sIU
+gdp
+lcV
+lcV
+hWq
+hif
+jKz
+xyw
+bcc
+bHB
+xyw
+bcm
+oqD
+kCT
+kCT
+ePk
+kCT
+hTu
+mzo
+wWf
+vhq
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(99,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aad
+ahE
+aOg
+avl
+hMI
+lFb
+agj
+mXj
+mXj
+aoZ
+aha
+mXj
+mXj
+akm
+mXj
+agj
+aox
+aoA
+wVW
+teY
+eVj
+aqN
+alX
+asc
+abk
+azV
+aAB
+aBZ
+avY
+awk
+alX
+alX
+mPn
+xMA
+wVW
+aKo
+aKz
+mKq
+ceK
+gUL
+hHl
+uvt
+aES
+aES
+aES
+aES
+aES
+gKJ
+uEv
+ofZ
+mnm
+ils
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+mGL
+lqI
+uNL
+aaD
+ahB
+ahB
+anL
+ajz
+aBC
+cfM
+wqh
+bHB
+vpW
+eXq
+rri
+aho
+aho
+eXq
+kqv
+pcl
+bpj
+pcl
+gHZ
+pcl
+fgE
+btO
+btO
+btO
+btO
+btO
+neE
+mNm
+bEE
+rOc
+fVz
+bHB
+vpW
+bcm
+hEt
+kCT
+xIi
+kCT
+kCT
+eNL
+mzo
+wWf
+nqU
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+"}
+(100,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+bdH
+aaa
+aaa
+aad
+ahE
+bEo
+avl
+iDT
+tDx
+agj
+mXj
+tZB
+hvH
+hvH
+hvH
+adv
+hvH
+alj
+agj
+aic
+aov
+wVW
+awA
+ayr
+awH
+aPD
+asc
+azW
+aqN
+aAC
+aCa
+bPs
+xUB
+gkK
+oug
+vSl
+aGH
+wVW
+aKn
+aKz
+mKq
+ceK
+wVB
+psa
+ceK
+sxD
+bhJ
+bHG
+brS
+aES
+rlz
+xuB
+iVo
+mnm
+ils
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+hJp
+hJp
+uNL
+aaK
+cfN
+afe
+adg
+ajz
+aBC
+cfM
+wqh
+bHB
+xyw
+aho
+vWc
+geg
+aEj
+aho
+aYt
+pcl
+gHZ
+pcl
+gHZ
+pcl
+fNi
+aYt
+xyw
+vAq
+hYG
+aYt
+gGs
+aYt
+aYt
+aYt
+jSo
+bHB
+xyw
+bcm
+rdr
+kCT
+poq
+kCT
+kCT
+gks
+mzo
+wWf
+nqU
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(101,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aad
+pCi
+bVF
+dTt
+jgM
+lFb
+agj
+eYC
+agc
+fNb
+pDL
+agc
+agc
+hvH
+alo
+agj
+aic
+aov
+wVW
+wVW
+wVW
+wVW
+wVW
+rOC
+soX
+azX
+uSH
+aCb
+aDv
+aEC
+wVW
+wVW
+wVW
+wVW
+wVW
+aKn
+aKz
+mKq
+ceK
+lcy
+iTw
+ceK
+aES
+tJi
+ivf
+bpe
+aES
+lGu
+xuB
+yiC
+sXs
+xEF
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+nXP
+fpd
+mGL
+uNL
+ceQ
+ceU
+aff
+adg
+ajz
+aBC
+cfM
+wqh
+bHB
+ezQ
+eXq
+fAa
+oYp
+oZp
+eXq
+vvp
+aYd
+aMY
+bqF
+gHZ
+pcl
+oRJ
+fTm
+fPu
+vAq
+hYG
+hYG
+aYt
+aYt
+gCw
+boV
+xyw
+bHB
+aYt
+bcm
+sti
+kCT
+iTN
+kCT
+kOk
+fIf
+mzo
+wWf
+pch
+vRz
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(102,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+bdH
+aaa
+aad
+ahE
+fHO
+avl
+jpJ
+lzH
+agj
+uvZ
+agc
+agc
+juN
+pxG
+agc
+ocs
+agc
+agj
+aic
+aov
+wVW
+asQ
+awG
+ayI
+wVW
+wbX
+avY
+avY
+aAE
+avY
+wlE
+gvq
+wVW
+lrW
+qDN
+vHW
+wVW
+ccg
+aKz
+mKq
+ceK
+rFs
+gek
+uvt
+aES
+aES
+aES
+aES
+aES
+xpt
+xuB
+xHW
+qJF
+ils
+ajZ
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aac
+aaf
+aag
+aag
+nXP
+dUF
+mGL
+uNL
+ceR
+ceU
+aff
+agy
+ajx
+tqg
+bJo
+mVE
+bHB
+xyw
+anU
+aeJ
+imy
+gEg
+dRD
+bdV
+bvf
+tQL
+bDn
+bGu
+bvf
+fKt
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xyw
+xxI
+xyw
+bHB
+btO
+bcm
+bcm
+bcm
+bcm
+bcm
+mzo
+sYC
+mzo
+gJd
+eXo
+vRz
+aag
+aag
+aaf
+ajY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(103,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+bdH
+aaa
+bdH
+bdH
+bdH
+bdH
+aaa
+aad
+ahE
+cjh
+avl
+llM
+lGL
+agj
+geW
+erZ
+tMn
+iVZ
+aiW
+aiW
+akn
+xyk
+sBF
+amY
+vtT
+wVW
+abQ
+atN
+cEl
+sOi
+aqN
+aqN
+ixv
+ixv
+ixv
+aDv
+aqN
+atP
+aHR
+aJI
+wFn
+wVW
+aKn
+aKz
+mKq
+bFC
+jUb
+qjz
+ceK
+sxD
+bhJ
+bHG
+gCP
+aES
+izx
+mQV
+hRi
+gpe
+ils
+ajZ
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+fQF
+mGL
+uNL
+abd
+adk
+afu
+anT
+eLz
+uFL
+ssa
+sqa
+hBF
+hCt
+eXq
+qYN
+lsD
+lkf
+eXq
+ooh
+pcl
+gHZ
+pcl
+aMY
+pcl
+xNb
+aYt
+fPu
+leg
+hYG
+hYG
+aYt
+aYt
+wFz
+bAi
+xyw
+bnH
+btO
+cdA
+lRX
+rux
+sEt
+bcm
+wbx
+vhq
+vhq
+wWf
+vhq
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(104,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+bdH
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+ahE
+cJB
+avl
+avl
+mrc
+agj
+cCd
+agc
+agc
+nwv
+pxG
+agc
+ako
+agc
+agj
+aic
+aov
+wVW
+atx
+qEk
+ajm
+wVW
+arP
+alX
+azZ
+aAF
+azZ
+aIf
+hkG
+wVW
+fvB
+qEk
+auR
+wVW
+aKn
+aKz
+mKq
+oKx
+tVh
+psa
+ceK
+aES
+mhm
+brS
+bpe
+aES
+mnm
+uEv
+nLK
+nLK
+ils
+ajZ
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+wVD
+mGL
+uNL
+uZQ
+uZQ
+bJo
+aoH
+aoF
+aBC
+cfM
+wqh
+bHB
+xyw
+aho
+dkj
+siz
+gYt
+aho
+aYt
+pcl
+gHZ
+pcl
+gHZ
+pcl
+uuu
+fTm
+xyw
+lqK
+hYG
+hYG
+hYG
+aYt
+aYt
+bFP
+xyw
+bHB
+btO
+cdA
+myo
+dtH
+eyR
+bcm
+wgo
+nqU
+vhq
+dQH
+xpf
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(105,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+pCi
+pCi
+pCi
+jTi
+nRq
+agj
+bYd
+agc
+qck
+yev
+agc
+agc
+akp
+hGB
+agj
+aic
+aov
+wVW
+atx
+qEk
+ato
+wVW
+aKF
+alX
+hxm
+deD
+tUo
+aIf
+aEB
+wVW
+fvB
+qEk
+auR
+wVW
+aKn
+aKz
+mKq
+aWk
+aWW
+aGr
+uvt
+aES
+aES
+aES
+aES
+aES
+dYh
+uEv
+xEF
+xEF
+xEF
+ajZ
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+mNf
+hJp
+uNL
+xcP
+xSI
+uZQ
+aoH
+aoF
+aBC
+cfM
+wqh
+bHB
+vpW
+eXq
+rri
+aho
+aho
+eXq
+kqv
+pcl
+gHZ
+pcl
+gpi
+pcl
+oJp
+bvf
+kRP
+bvf
+bvf
+bvf
+egp
+ptv
+qXZ
+vsF
+bGJ
+hBF
+vxb
+bcm
+mhd
+aYt
+tuN
+fPn
+nqU
+nqU
+vhq
+dQH
+hYc
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(106,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+bdH
+bdH
+aaa
+aad
+aag
+aag
+pCi
+avl
+myn
+agj
+mXj
+tZB
+hvH
+ahv
+aiF
+aiF
+akr
+xZz
+agj
+aic
+aov
+wVW
+ssW
+qEk
+hrm
+wVW
+rOC
+aqN
+tCT
+tCT
+tCT
+aDv
+aEC
+wVW
+dNZ
+qEk
+mtX
+wVW
+aKn
+aKz
+mKq
+aWq
+aXb
+aGr
+ceK
+sxD
+bhJ
+bHG
+cWy
+aES
+gpe
+xuB
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+bvO
+hJp
+ahd
+adg
+amp
+uZQ
+aoH
+gds
+aky
+bJo
+vPM
+bHB
+xyw
+anW
+aol
+aYt
+aYt
+anW
+aYt
+pcl
+gHZ
+pcl
+gHZ
+pcl
+brY
+aYt
+cSx
+nPB
+hYG
+ggh
+gRd
+hif
+jRS
+xyw
+bGK
+bHB
+btO
+cdA
+omP
+aYt
+bOC
+bcm
+vhq
+nqU
+vhq
+dQH
+jhA
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(107,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aad
+aag
+aag
+pCi
+cnX
+lIh
+agj
+mXj
+afo
+lue
+ahw
+aiG
+aiG
+aks
+alu
+agj
+aic
+aoA
+wVW
+atx
+jvX
+ato
+wVW
+vTu
+alX
+alX
+avY
+alX
+aIf
+aED
+wVW
+ryR
+jvX
+auR
+wVW
+aKn
+aKy
+mKq
+aWt
+ceK
+ceK
+eua
+aES
+eBd
+brS
+cpj
+aES
+fgx
+dEV
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+dNB
+hJp
+uNL
+hSL
+agn
+afx
+agX
+ajy
+vwP
+bJo
+kCm
+rgy
+bvf
+aof
+aoN
+bea
+bfZ
+baS
+bkh
+bea
+bfZ
+baS
+bkh
+bea
+bfZ
+baS
+bkh
+ohE
+vWJ
+qUL
+txO
+mwQ
+bEK
+baS
+bGL
+bHB
+aYt
+cdA
+ivg
+llO
+kSv
+bcm
+mzo
+puR
+aKI
+dQH
+nqU
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(108,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aad
+aag
+aag
+pCi
+anI
+lIh
+agj
+agj
+agj
+agj
+agj
+agj
+agj
+agj
+agj
+agj
+fEk
+hlU
+wVW
+wVW
+wVW
+wVW
+wVW
+aCf
+ayt
+aCf
+wVW
+aCf
+hzL
+aCf
+wVW
+wVW
+wVW
+wVW
+wVW
+fDU
+uiZ
+mKq
+mKq
+kqt
+aVX
+aES
+aES
+aES
+aES
+aES
+aES
+gaO
+vnV
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+mGL
+mGL
+uNL
+eXq
+adR
+eXq
+aho
+aho
+aho
+eXq
+hmy
+bHB
+aZV
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGM
+bHB
+aqs
+bcm
+bcm
+wXT
+cdA
+bcm
+bcm
+mzo
+mzo
+wWf
+nqU
+vRz
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(109,1,1) = {"
+aaa
+aaa
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+pCi
+ifR
+jMt
+gpY
+uBi
+wYA
+awW
+awW
+awW
+awW
+aSJ
+goj
+kAh
+aic
+aBW
+aom
+nmh
+eco
+vdL
+laV
+aqF
+alX
+alX
+xQa
+alX
+aIf
+aBS
+laV
+whB
+gio
+nmh
+aKf
+aKu
+aKz
+vjb
+cZb
+aXe
+baw
+oxu
+baw
+baw
+oaK
+nUn
+pgD
+xuB
+gpe
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+mGL
+mGL
+uNL
+abG
+aeh
+afy
+xWp
+aAL
+aBt
+ajM
+aXh
+bHB
+aZW
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGN
+bHB
+xAY
+gHZ
+wlK
+aYt
+aYt
+aYt
+lrX
+bcm
+kGt
+wWf
+pch
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(110,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aag
+aag
+pCi
+avl
+lIh
+gpY
+uac
+vFw
+ajf
+ajf
+ajf
+ajf
+oAO
+oEf
+aVW
+vta
+aBH
+aKv
+aKv
+aKv
+aKv
+bYY
+aCj
+ayK
+aAd
+aAP
+mCF
+ayu
+aCj
+bYY
+aKv
+aKv
+aKv
+aTa
+aTk
+mtM
+rmD
+aWz
+aZC
+aZz
+aZz
+aZz
+aZz
+wUP
+lrF
+pgD
+uEv
+gpe
+xEF
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+nXP
+rbv
+hJp
+uNL
+abH
+aer
+agf
+ais
+aoL
+akz
+ajM
+caM
+bHB
+aZX
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGO
+bHB
+xAY
+gHZ
+qCG
+btO
+btO
+btO
+uII
+fPn
+cQN
+wWf
+eXo
+vRz
+aag
+aag
+aag
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(111,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+abs
+abs
+abs
+abs
+abs
+abs
+abs
+abs
+pCi
+ail
+gwY
+gpY
+mto
+acW
+awW
+awW
+oGC
+oGC
+aSJ
+goj
+iff
+bYz
+aBX
+rqb
+aJw
+aBX
+aBX
+laV
+asc
+ayL
+aAf
+aLM
+wlE
+alX
+awk
+laV
+aBX
+aKa
+aJw
+lLS
+aKq
+cPg
+wPf
+cZb
+aXe
+iVE
+baw
+baw
+baw
+sgU
+baw
+pgD
+lIV
+gsH
+xEF
+tQV
+tQV
+tQV
+tQV
+tQV
+tQV
+tQV
+tQV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aac
+aaf
+aaf
+aag
+aag
+aag
+aag
+nXP
+mGL
+pwK
+pJW
+acq
+aeJ
+azl
+ahV
+khD
+rYJ
+ajM
+xyw
+bHB
+aZY
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGP
+bHB
+xAY
+gHZ
+xJR
+aYt
+aYt
+puI
+iWx
+bcm
+uSq
+dQH
+vhq
+vRz
+aag
+aag
+aag
+aag
+aaf
+aaf
+ajY
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(112,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+abs
+adq
+aeW
+ajD
+anM
+oGC
+add
+aSA
+bvb
+afr
+ajI
+pYu
+awW
+acW
+add
+ryG
+ohB
+aiX
+awd
+awd
+awd
+awd
+awd
+awd
+awd
+awd
+awd
+wVW
+ayv
+ayM
+aAj
+aBI
+aCk
+aDK
+aEG
+wVW
+awF
+aIQ
+awF
+ecr
+aJc
+ecr
+ecr
+ecr
+ygs
+aET
+nUv
+aJU
+aJU
+sgU
+baw
+dqb
+tiW
+goL
+mor
+iKK
+aJU
+baw
+mAp
+mAp
+lVl
+pgD
+tQV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+mGL
+fJX
+uNL
+acu
+aeh
+afF
+xWp
+azJ
+bLP
+eXq
+eVm
+bHB
+aZV
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGM
+bHB
+tIS
+bcm
+bcm
+wXT
+cdA
+bcm
+bcm
+bcm
+mzo
+mxL
+kAs
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(113,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+abs
+adq
+aea
+ajE
+awW
+awW
+add
+aSJ
+awW
+bZe
+ajI
+awW
+awW
+acW
+qdQ
+eFT
+hhA
+weD
+unT
+kng
+fDV
+aiX
+aiX
+tAL
+awX
+tAL
+awX
+wVW
+wVW
+wVW
+aAl
+jnX
+dum
+wVW
+wVW
+wVW
+lgK
+aGZ
+awF
+cST
+aTz
+aUl
+aET
+aWA
+jgu
+aET
+mSi
+wHp
+gZw
+sgU
+baw
+baw
+tiW
+nig
+baw
+aXe
+aJU
+baw
+baw
+baw
+cxk
+pgD
+tQV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+tpg
+vJM
+uNL
+acM
+aer
+agf
+ais
+xWp
+aBw
+ajM
+xyw
+bHB
+aZW
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bFR
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGN
+bHB
+btO
+cdA
+apE
+icp
+fER
+bcm
+mzo
+xSb
+vhq
+dQH
+mjR
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(114,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaC
+abs
+adq
+aoy
+awW
+awW
+awW
+add
+aoI
+awW
+aeZ
+ajI
+awW
+uzy
+abB
+add
+add
+add
+weD
+nwL
+amh
+nwL
+aiX
+wbO
+awY
+awY
+awY
+awY
+kOB
+awZ
+aiX
+jnw
+aBq
+pRL
+awF
+aEM
+aGV
+rvA
+aKE
+awF
+cST
+aUw
+aUm
+aET
+aET
+aET
+aET
+nUv
+aJU
+aJU
+pIV
+baw
+baw
+tiW
+tTu
+baw
+gnv
+aJU
+baw
+baw
+baw
+ciQ
+pgD
+tQV
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+hJp
+dpy
+uNL
+acZ
+aeN
+azl
+ahS
+ajA
+akz
+ajM
+xyw
+bHB
+aZX
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGO
+bHB
+aYt
+cdA
+uiT
+aYt
+jyR
+bcm
+ioj
+nqU
+vhq
+dQH
+fIH
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(115,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaC
+abw
+adr
+awW
+ajH
+ajf
+abf
+aEQ
+ajf
+ajf
+ajf
+teo
+abf
+ajf
+evX
+aeZ
+aka
+aoI
+weD
+fdE
+amh
+amh
+aiX
+cJu
+pXx
+pXx
+pXx
+pXx
+jrm
+evg
+aiX
+asj
+aAW
+aCl
+awF
+aFg
+aGY
+rvA
+aKN
+awF
+cbm
+aUw
+aUm
+aUw
+aRv
+pPv
+aET
+nPa
+yhI
+tTu
+gVF
+aZz
+cts
+tvw
+aZz
+aZz
+aZz
+ejY
+cts
+aZz
+kyX
+baw
+gCf
+trb
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+hJp
+fkW
+uNL
+vhw
+khD
+azw
+xWp
+aAK
+aBz
+ajM
+aXj
+bHB
+aZY
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGP
+bHB
+vxb
+bcm
+apL
+aYt
+iKb
+bcm
+ygy
+nqU
+vhq
+wWf
+qUj
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(116,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaC
+abw
+adP
+awW
+acW
+awW
+add
+add
+add
+add
+add
+add
+add
+oMQ
+evX
+afr
+akc
+buc
+weD
+jMm
+pcG
+iFn
+qnD
+amh
+kWT
+wUR
+wUR
+wWC
+auZ
+aiX
+aiX
+asl
+amO
+aGO
+awF
+aFj
+aGY
+rvA
+aKO
+awF
+aRx
+aRx
+aUo
+aVi
+pbp
+pMj
+awS
+lWr
+csI
+goL
+sgU
+baw
+aJU
+aJU
+aJU
+wDl
+aJU
+aJU
+aJU
+hEV
+eBe
+baw
+xYQ
+trb
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+fpd
+nVS
+uNL
+eXq
+eXq
+eXq
+eXq
+eXq
+eXq
+eXq
+mrD
+bHB
+aZV
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGM
+bHB
+btO
+cdA
+uiT
+aYt
+xNj
+bcm
+mjR
+nqU
+vhq
+dQH
+gWR
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(117,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaC
+abs
+adq
+dpo
+ajI
+add
+add
+aFJ
+aTf
+aTf
+aTf
+iZP
+add
+add
+ajI
+add
+add
+gqP
+aiX
+aiX
+aiX
+aiX
+aiX
+oqw
+lvA
+osT
+cZV
+pQV
+apq
+ana
+aiX
+asp
+amO
+avj
+awF
+aFo
+aGY
+rvA
+aqm
+awF
+dOl
+aTA
+aUp
+qVC
+aUw
+jmP
+awS
+xhn
+aJU
+aJU
+tiW
+aJU
+qQp
+xAI
+kiT
+kiT
+kiT
+gjq
+aJU
+aJU
+tiW
+msg
+pgD
+tQV
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+hJp
+dnX
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+aXj
+bHB
+aZW
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGN
+bHB
+btO
+cdA
+fpW
+llO
+vml
+bcm
+mzo
+jhA
+jhA
+dQH
+wlL
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(118,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaC
+abs
+adq
+jWH
+ajI
+add
+fsU
+aHU
+aTm
+awW
+aTm
+jgF
+fsU
+add
+ajI
+add
+add
+add
+gzI
+fdE
+mLz
+iFn
+alw
+amh
+dGr
+rtY
+fJy
+xQg
+wWC
+szO
+aiX
+atU
+amO
+qLj
+awF
+awF
+aEW
+aHX
+aEW
+awF
+aRB
+qVC
+wvb
+eem
+aUw
+aUw
+awS
+nJs
+aJU
+aJU
+tiW
+aJU
+gBW
+ouQ
+iun
+baw
+vPm
+qys
+gBW
+aJU
+tiW
+pUe
+pgD
+tQV
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+mGL
+dnX
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+xyw
+bHB
+aZX
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bGO
+bHB
+uAb
+bcm
+mzo
+sYC
+mzo
+mzo
+mzo
+mzo
+mzo
+gJd
+vhq
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(119,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaC
+abw
+adQ
+awW
+acW
+awW
+auK
+aIr
+aTm
+bvd
+aTm
+juX
+scu
+awW
+acW
+aeZ
+aka
+aoI
+gzI
+nwL
+mfQ
+nPx
+aiX
+amd
+dXY
+fmB
+umS
+yjM
+qbO
+aqw
+fMW
+bYe
+amO
+wZM
+aPm
+awF
+aHk
+vGI
+aLp
+awF
+jss
+aTB
+aUq
+aVk
+ldC
+vkb
+aET
+eFM
+yhI
+tTu
+sgU
+baw
+lRE
+tuf
+vbB
+rBH
+vbB
+mlz
+sOy
+baw
+sgU
+baw
+svp
+trb
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+mGL
+fJX
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+hmy
+bHB
+aZL
+baX
+bcw
+beg
+bgj
+baX
+bks
+beg
+bgj
+baX
+bks
+beg
+bgj
+baX
+bks
+beg
+bgj
+baX
+bks
+beg
+bEN
+baX
+bcp
+bHB
+xAY
+aYz
+mzo
+vhq
+eJh
+eFp
+qUH
+mzo
+qUj
+dQH
+vhq
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(120,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaY
+abw
+adZ
+awW
+acW
+awW
+avc
+aIv
+aTm
+kJL
+cbM
+jzZ
+sLo
+awW
+acW
+afr
+akc
+xVI
+gzI
+aku
+eGH
+qnl
+aiX
+apt
+sCI
+pWN
+uTN
+aqy
+nBE
+pOD
+bZa
+ahM
+aEf
+wZM
+ejp
+awF
+aHn
+szU
+aLt
+awF
+aRC
+aUw
+aUw
+aUw
+aUw
+jmP
+aET
+dSp
+csI
+goL
+sgU
+baw
+hJk
+yac
+vbB
+kUQ
+vbB
+fDS
+iLd
+baw
+sgU
+baw
+uvk
+trb
+aaC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+tRV
+dnX
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+xyw
+bHB
+wqh
+xyw
+bcc
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+aYt
+wqh
+xyw
+bcc
+bHB
+xAY
+aYz
+mzo
+xIj
+nqU
+nqU
+vhq
+gsL
+nqU
+wWf
+eXo
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(121,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaY
+abs
+adq
+add
+ajI
+add
+fsU
+aHU
+aTm
+awW
+aTm
+jgF
+fsU
+add
+ajI
+add
+add
+vmN
+aiX
+aiX
+aiX
+aiX
+aiX
+awq
+lvA
+pQV
+mHO
+aiX
+aiX
+aiX
+aiX
+atV
+amO
+oXd
+qFl
+qFl
+qFl
+qFl
+qFl
+qFl
+aRE
+qVC
+qVC
+prE
+aUw
+aUw
+awS
+nJs
+aJU
+aJU
+tiW
+aJU
+gBW
+ouQ
+vbB
+baw
+tBq
+qys
+gBW
+aJU
+tiW
+aJU
+pgD
+tQV
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+nun
+vJM
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+bGQ
+bHB
+tdc
+rOc
+bcx
+bPr
+bPr
+bPr
+byv
+bdI
+rBb
+ehi
+mha
+kTY
+ehi
+mha
+rBb
+bdI
+bPr
+bPr
+bPr
+byv
+bEO
+rOc
+fVz
+bHB
+uII
+ruz
+mzo
+gwm
+pEy
+nqU
+sRI
+mzo
+fdA
+wWf
+nqU
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(122,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaY
+abs
+adq
+aeY
+ajI
+add
+add
+aIw
+aUa
+aUa
+aUa
+jAz
+add
+add
+ajI
+add
+add
+add
+rwY
+fdE
+feS
+iFn
+alw
+kFe
+mJL
+qbO
+wbu
+aiX
+aKG
+amb
+aiX
+ayT
+amO
+avj
+qFl
+aFp
+aHo
+bZH
+aQs
+qFl
+aSq
+aTE
+aTE
+aTE
+aTE
+jLs
+awS
+nJs
+aJU
+aJU
+tiW
+aJU
+aJU
+gLE
+pNM
+pNM
+pNM
+hHr
+aJU
+aJU
+tiW
+usm
+pgD
+tQV
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+nXP
+hJp
+qNG
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+bGR
+bHB
+xyw
+bkA
+bkA
+bkA
+bkA
+bkA
+bkA
+bkA
+baZ
+qOf
+rIj
+baZ
+qOf
+bqH
+baZ
+gfW
+gfW
+gfW
+gfW
+gfW
+gfW
+gfW
+xyw
+bHB
+uII
+wrT
+mzo
+pVu
+eOr
+dFV
+iVO
+mzo
+nqU
+wWf
+pch
+vRz
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaY
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(123,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaY
+abw
+adP
+awW
+ajT
+aoC
+add
+add
+add
+add
+add
+add
+add
+awW
+acW
+aeZ
+aka
+aoI
+rwY
+nwL
+amh
+nPx
+aiX
+aiX
+uOJ
+pqc
+pqc
+aqz
+aKH
+and
+aiX
+lzj
+amO
+bYe
+aTR
+gpe
+gpe
+aIa
+ayh
+qFl
+aSt
+aTE
+aTE
+aTE
+aTE
+qdA
+awS
+tvQ
+yhI
+tTu
+sgU
+baw
+aJU
+aJU
+aJU
+aJU
+aJU
+aJU
+aJU
+baw
+sgU
+baw
+xYQ
+trb
+aaY
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+nXP
+nXP
+nXP
+nXP
+nXP
+nXP
+nXP
+mGL
+kKG
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+xyw
+bHB
+xyw
+bkA
+bnj
+kPx
+bgk
+biq
+dvg
+bgG
+bnI
+qjN
+qjN
+rdS
+qjN
+qjN
+tGh
+gfW
+sgj
+bDv
+bDv
+bDv
+bEP
+gfW
+bGQ
+bHB
+qnd
+cmp
+cmp
+cmp
+cmp
+cmp
+cmp
+cmp
+vwN
+wWf
+nqU
+vRz
+vRz
+vRz
+vRz
+vRz
+vRz
+vRz
+ajZ
+aaY
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(124,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaY
+abw
+adr
+awW
+ajV
+ajf
+abf
+aEQ
+ajf
+ajf
+ajf
+aEQ
+abf
+ajf
+evX
+afr
+akc
+buc
+rwY
+akv
+eGH
+qnl
+aiX
+fuz
+pLW
+sht
+wex
+aiX
+aiX
+aiX
+aiX
+ukh
+amO
+nxK
+qFl
+aFq
+aHB
+aIb
+aRr
+qFl
+aSx
+aTE
+aTG
+aVr
+aUC
+tTD
+aET
+ngf
+bAH
+goL
+gVF
+aZz
+cts
+ejY
+aZz
+aZz
+aZz
+ejY
+cts
+aZz
+nsc
+ltA
+gCf
+trb
+aaY
+bdH
+bdH
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+nXP
+sAm
+mGL
+aLl
+hJp
+hJp
+mGL
+mGL
+eKO
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+aYu
+wTg
+bGq
+bkA
+bcz
+bej
+bej
+bej
+bzS
+nvM
+vyu
+qjN
+qjN
+qjN
+qjN
+qjN
+bei
+gfW
+bkN
+ezG
+fdZ
+bzg
+pqi
+gfW
+rHw
+wTg
+aYu
+cmp
+bTz
+apV
+are
+apV
+djM
+cmp
+mjR
+wWf
+nqU
+vhq
+vhq
+rcH
+vhq
+wqE
+kwq
+vRz
+ajZ
+aaY
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(125,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaY
+abs
+adq
+aoy
+awW
+awW
+awW
+add
+apg
+awW
+afr
+add
+awW
+awW
+abB
+add
+xWO
+aiX
+aiX
+aau
+aau
+aau
+aau
+uVX
+ase
+sht
+uOJ
+aqz
+mBe
+atT
+aiX
+ayU
+amO
+avm
+qFl
+qFl
+aeD
+qFl
+qFl
+qFl
+pUJ
+mSP
+pUJ
+pUJ
+pUJ
+pUJ
+pUJ
+pgD
+nUv
+aJU
+pIV
+baw
+baw
+aJU
+goL
+baw
+vpn
+aJU
+baw
+baw
+baw
+ciQ
+pgD
+tQV
+aaY
+bdH
+bdH
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaY
+aad
+nXP
+hJp
+hJp
+mGL
+mGL
+pwK
+cmk
+xJi
+cIi
+uNL
+aRu
+aRu
+aRu
+aRu
+aRu
+aRu
+bcm
+aZZ
+aYC
+aZZ
+bkA
+bcA
+bgm
+bgm
+bgl
+bpz
+biu
+kdB
+kdB
+udr
+bqL
+bqL
+bqL
+bqL
+bkz
+uSS
+pIU
+uSS
+uDA
+bER
+gfW
+aZZ
+aYC
+aZZ
+cmp
+apM
+eGs
+bWM
+bWM
+bWS
+cmp
+mjR
+bVR
+oeo
+oeo
+gdd
+oeo
+oeo
+bgc
+qUj
+vRz
+ajZ
+aaY
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(126,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+aeX
+awW
+awW
+awW
+add
+aSJ
+awW
+bZe
+add
+awW
+awW
+acW
+qdQ
+muq
+aiX
+aiX
+aau
+dBs
+dBs
+aau
+fuz
+tld
+uOJ
+mHO
+aiX
+asf
+atT
+aiX
+mQH
+amT
+ioX
+pUJ
+inC
+anX
+aht
+gvC
+pTc
+bsO
+bsO
+aal
+xKW
+aht
+aht
+gcc
+pgD
+lza
+gZw
+gVF
+kuk
+baw
+aJU
+nig
+baw
+aXe
+aJU
+baw
+baw
+baw
+cxk
+pgD
+tQV
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+nXP
+xYN
+xYN
+uNL
+bdi
+kKG
+hJp
+pda
+lpS
+wfE
+wfE
+wfE
+wfE
+wfE
+wfE
+wfE
+wfE
+bsk
+sxu
+cBI
+bkA
+bcB
+bej
+arX
+vSG
+iag
+nvM
+bek
+qjN
+gGJ
+ham
+qjN
+qjN
+oWf
+gfW
+xgJ
+fdZ
+bnS
+fdZ
+tzx
+gfW
+bLT
+cbQ
+ccq
+cmp
+apO
+bWM
+bWM
+bWM
+gQl
+asE
+asE
+asE
+asE
+asE
+asE
+asE
+asE
+clO
+gUv
+vRz
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(127,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+awW
+awW
+awW
+oGC
+ryG
+aVL
+bBl
+aeZ
+ryG
+oGC
+awW
+acW
+add
+bny
+aiX
+aiX
+aiX
+vwV
+vwV
+aiX
+aiX
+aiX
+sHM
+dWJ
+aiX
+aiX
+aiX
+aiX
+nVe
+akV
+bRs
+pUJ
+pUJ
+abA
+pUJ
+pUJ
+pUJ
+pUJ
+pUJ
+pUJ
+pUJ
+pUJ
+pUJ
+ymi
+pgD
+nUv
+aJU
+sgU
+baw
+baw
+aJU
+bnZ
+cIe
+jez
+aJU
+baw
+baw
+baw
+baw
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+nXP
+aMr
+aMr
+wfE
+wfE
+rXv
+wfE
+wfE
+wfE
+wfE
+sGU
+vhY
+wfE
+bqm
+bsD
+btr
+wfE
+owH
+stY
+owH
+bkA
+bcC
+bej
+uyJ
+fVG
+qpQ
+nvM
+bek
+qjN
+sld
+ham
+ham
+qjN
+oDY
+omo
+fvJ
+fdZ
+ixj
+fdZ
+bET
+gfW
+bGT
+bHH
+bGT
+cmp
+apP
+hKQ
+bWM
+bWM
+fps
+asE
+asB
+atA
+bWM
+aur
+auI
+auY
+asE
+caE
+pdk
+vRz
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(128,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+aei
+aka
+aWn
+aar
+aar
+aar
+aar
+aar
+aar
+oGC
+awW
+acW
+awW
+awW
+awW
+fSm
+atW
+apl
+bbL
+bbL
+kij
+bbL
+bYe
+bYe
+yfv
+bbL
+aWl
+bbL
+bbL
+bax
+bbL
+bbL
+aWl
+afv
+yfv
+bbL
+bbL
+bbL
+bbL
+kij
+bbL
+xRU
+pEY
+jsP
+baw
+fGg
+baw
+sgU
+baw
+baw
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+hXV
+yhI
+rRz
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+bdn
+bdn
+wfE
+mcL
+jOo
+wrC
+mHx
+pqX
+pqX
+xbk
+wFR
+bmF
+wFR
+wFR
+xbk
+aWw
+bys
+bxd
+vgC
+bkA
+eUn
+bcD
+qpx
+bet
+bgu
+nvM
+bek
+qjN
+gGJ
+ham
+qjN
+qjN
+qyD
+omo
+blZ
+bqN
+nbb
+bqN
+bwR
+gfW
+bUe
+cbR
+ccr
+hcC
+lEW
+aqd
+bWM
+bWM
+ask
+asE
+asE
+asE
+atJ
+aus
+aus
+ava
+asE
+clP
+ovF
+yhQ
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(129,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+apr
+apr
+aoV
+aar
+aIZ
+aIZ
+aIZ
+bWK
+aar
+aea
+oGC
+xjD
+ajf
+ajf
+ajf
+oAO
+heH
+aod
+qgG
+amC
+amC
+amC
+fXB
+amC
+amC
+hyc
+all
+all
+amC
+bYh
+amC
+fXB
+fXB
+fBL
+bYc
+bYc
+suV
+bYc
+bYc
+bYc
+qgG
+dqN
+tFW
+dGC
+aZz
+aZz
+aZz
+nsc
+baw
+cxk
+qVM
+iBt
+iBt
+iBt
+vce
+qVM
+wTy
+wTy
+wTy
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+uJo
+aLf
+wfE
+dgl
+jOo
+xbk
+mub
+mub
+mub
+xbk
+rkz
+esM
+esM
+uUi
+xbk
+aWw
+aNO
+sLE
+qLo
+bkA
+nvM
+bgG
+bcK
+bgG
+nvM
+bkA
+vwF
+nEJ
+ben
+qjN
+qjN
+qjN
+hpN
+gfW
+omo
+wkc
+gfW
+uFo
+omo
+gfW
+iRx
+iEb
+bHa
+apm
+jUn
+avT
+bWM
+bWM
+aso
+asv
+xVO
+asE
+bWM
+auw
+auM
+avb
+asE
+scI
+oed
+yhQ
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(130,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+aub
+akc
+euO
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+oGC
+sHp
+oGC
+awW
+awW
+awW
+aSJ
+tsv
+dtM
+aii
+mce
+avn
+mTb
+avn
+avn
+gyy
+avn
+avn
+avn
+avn
+mRl
+avn
+gyy
+avn
+avn
+avn
+avn
+avn
+mTb
+avn
+nFr
+aii
+ajC
+dCD
+aXe
+baw
+baw
+baw
+mnA
+baw
+baw
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+crh
+csI
+nqG
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+ebD
+aLf
+wfE
+krp
+jOo
+aGn
+oDv
+wFR
+gxO
+vnD
+wFR
+wFR
+wFR
+soA
+xbk
+wfE
+kEb
+sLE
+aLG
+bCd
+iey
+baf
+kws
+vSn
+vSn
+mvI
+lqF
+qjN
+gGJ
+qjN
+qjN
+qjN
+pjw
+qdz
+bmb
+bsj
+bPk
+bsj
+byb
+bCd
+buH
+iEb
+buH
+app
+uku
+aqD
+bWM
+arE
+ast
+pjP
+atd
+uku
+bWM
+aux
+aus
+ava
+asE
+suT
+ftl
+yhQ
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(131,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+aec
+avd
+akt
+awW
+qHq
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+rKs
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+dtM
+aii
+ajC
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aoe
+aEI
+aii
+aik
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+xeG
+qVM
+qVM
+iBt
+iBt
+iBt
+iBt
+eOM
+baw
+sMM
+xVF
+dLz
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+bPW
+aLf
+wfE
+eiP
+qOp
+rOJ
+vYm
+vYm
+vYm
+fsp
+qtv
+qtv
+qtv
+xFZ
+btx
+naV
+bxk
+aYI
+aLG
+bCd
+tmg
+qjN
+qjN
+qjN
+qjN
+qjN
+qjN
+qjN
+gGJ
+qjN
+qjN
+qjN
+qjN
+tzP
+tzP
+qjN
+qjN
+tzP
+wYK
+bCd
+buH
+iEb
+buH
+app
+uku
+aqT
+bWM
+gwW
+dvF
+bWM
+ate
+uku
+bWM
+auC
+auN
+dxL
+asE
+tqk
+iBG
+yhQ
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(132,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+aGP
+aka
+aWu
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+uLW
+tZe
+oQo
+dCh
+adt
+xUI
+aOD
+aar
+mOL
+aii
+ajC
+aoe
+aoh
+jHQ
+jkl
+jkl
+jkl
+wDH
+dSJ
+hQU
+pjF
+mcW
+vih
+aoe
+imp
+fYb
+cnV
+isN
+cnZ
+aoe
+dtM
+aii
+ajC
+qVM
+gKS
+gKS
+csz
+xCX
+csz
+vGk
+vGk
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+hWB
+yhI
+qSX
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+bPT
+aLf
+wfE
+fHz
+opD
+aGn
+nTZ
+wFR
+lah
+vnD
+iRy
+esM
+esM
+jpt
+xbk
+aWw
+aLG
+aZi
+cOM
+baZ
+bep
+qjN
+qjN
+qjN
+cle
+qjN
+qjN
+qjN
+gGJ
+qjN
+qjN
+qjN
+qjN
+qjN
+cle
+qjN
+qjN
+qjN
+imo
+baZ
+oLv
+iEb
+buH
+app
+uku
+aqW
+bWM
+arZ
+mkh
+bWM
+ath
+asE
+atZ
+auE
+auP
+wZy
+asE
+iTz
+vfJ
+yhQ
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(133,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+aGQ
+akc
+apg
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+aao
+aap
+ijU
+vkD
+ijU
+aap
+aao
+sMs
+bYe
+akU
+ajC
+aoe
+vbS
+arb
+aoq
+aoq
+aoq
+aoq
+arb
+ccs
+aoq
+aoq
+aoq
+aor
+aEi
+aEi
+cnW
+aEi
+coa
+aoe
+ahr
+akU
+bYe
+xCX
+csz
+vGk
+vGk
+qVM
+bDe
+csz
+csz
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+wvj
+csI
+iPH
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+aLf
+aSm
+wfE
+iYx
+opD
+xbk
+msZ
+msZ
+msZ
+xbk
+wFR
+ldt
+nEF
+tXi
+pcE
+aWw
+aLG
+aZi
+aLG
+hqW
+qjN
+qjN
+hDX
+bei
+xgh
+mlH
+cAF
+eEk
+kDR
+maI
+ujz
+ljO
+kdB
+bmO
+xgh
+mlH
+hDX
+qjN
+qjN
+jpp
+buH
+iEb
+buH
+eDG
+cmp
+ard
+bWM
+gwW
+saB
+bWM
+ati
+atE
+aua
+gwW
+xqS
+yiE
+avk
+wlp
+vXX
+yhQ
+ajZ
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(134,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abs
+aee
+avd
+akt
+qWI
+aar
+aar
+aar
+aar
+aar
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+ahr
+akU
+ajC
+aoe
+qQc
+fXg
+dfa
+dfa
+dfa
+dfa
+dfa
+gzK
+arb
+arb
+arb
+aor
+sKa
+sKa
+jBy
+aEi
+fFh
+aoe
+dtM
+akU
+ajC
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+qVM
+qVM
+qVM
+qVM
+qVM
+ehj
+irS
+ilJ
+njD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+aLf
+aSm
+wfE
+gww
+opD
+wFR
+wFR
+aqn
+arT
+xbk
+jfZ
+kqK
+ljf
+maL
+uKe
+aWw
+aLG
+avX
+tzf
+vcq
+qPS
+qPS
+qim
+qPS
+vln
+mKw
+rcx
+kan
+ojZ
+jjn
+ojZ
+kan
+leY
+tYi
+uYa
+bqL
+iaF
+bqL
+bqL
+ocf
+bFu
+mKY
+hvp
+mWw
+apT
+apA
+arC
+nbm
+cSN
+asy
+atw
+atF
+aud
+auF
+ati
+cUb
+asE
+luu
+gNx
+yhQ
+ajZ
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(135,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+aWm
+aka
+kyY
+aar
+cit
+ina
+nuY
+nuY
+lYA
+aax
+aax
+aax
+dkO
+aps
+aps
+aps
+lYA
+vIm
+aii
+ajC
+aoe
+vbS
+koB
+asU
+asU
+asU
+asU
+arb
+fEC
+aoe
+aoe
+aCw
+aoe
+aoe
+aoe
+aoe
+hFF
+aoe
+aoe
+dtM
+aii
+ajC
+czu
+aiJ
+aiJ
+aiJ
+qYr
+atj
+atj
+atj
+czu
+foR
+usi
+vGk
+foR
+qVM
+rQW
+yhI
+tmI
+pgD
+tQV
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+rJb
+aSm
+wfE
+rYi
+opD
+wFR
+wFR
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aLG
+aZi
+cOM
+baZ
+eyQ
+qjN
+qjN
+qjN
+qjN
+gGJ
+bqR
+vhX
+gls
+cAm
+bwH
+vhX
+xqv
+gGJ
+qjN
+qjN
+qjN
+qjN
+xtM
+baZ
+oLv
+hop
+vMx
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+auh
+gwW
+ati
+lBY
+asE
+wlp
+sIx
+yhQ
+ajZ
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(136,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abs
+adq
+apr
+apr
+apr
+aar
+aJL
+aYr
+aao
+aao
+lYA
+aax
+aax
+aax
+vQe
+aps
+aps
+aps
+lYA
+ahq
+akU
+ajC
+aoe
+aop
+koB
+jkl
+jkl
+jkl
+jkl
+arb
+ayW
+aoe
+lFn
+imp
+kEp
+aoe
+tsC
+uRt
+aQz
+aRJ
+ajl
+dtM
+akU
+ajC
+czu
+aiJ
+aiJ
+aiJ
+str
+atj
+atj
+atj
+czu
+usi
+vGk
+vGk
+vLv
+qVM
+wTy
+wTy
+wTy
+pgD
+tQV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+aLf
+aSm
+wfE
+cVK
+opD
+oRO
+ren
+aKW
+aeL
+aeL
+aeL
+aqM
+arO
+arO
+arO
+aKW
+beB
+byI
+beB
+bCd
+mlH
+bqR
+cle
+tYw
+tlA
+nyj
+vVW
+vhX
+unU
+rlZ
+twq
+vhX
+jCK
+nyj
+tlA
+bwT
+cle
+bCe
+sdO
+bCd
+bJz
+rrV
+bJz
+yhQ
+aue
+aue
+aue
+txi
+azy
+azy
+azy
+yhQ
+aup
+gwW
+kiF
+ave
+asE
+scI
+sIx
+yhQ
+ajZ
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(137,1,1) = {"
+aaa
+aaa
+aab
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+acf
+aet
+afB
+akW
+apu
+aar
+aar
+aao
+aap
+pDm
+lYA
+acV
+acV
+acV
+vQe
+aps
+aps
+aps
+lYA
+dtM
+nmx
+cpw
+hSI
+pMp
+gzK
+aoq
+aoq
+aoq
+aoq
+aoq
+aoq
+aAG
+aBd
+aEi
+aGW
+aRF
+akx
+akw
+aQz
+aRK
+ajl
+aDk
+akU
+ajC
+czu
+aiJ
+aiJ
+aiJ
+str
+atl
+atl
+atl
+czu
+dQE
+vGk
+csz
+qVM
+qVM
+crh
+csI
+qhb
+pgD
+tQV
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aad
+aKW
+aLf
+aMs
+wfE
+wfE
+viJ
+wfE
+wfE
+aKW
+aeL
+aeL
+aeL
+kHj
+arO
+arO
+arO
+aKW
+aLG
+aZi
+aLG
+bCd
+bmn
+knH
+kan
+kan
+oKv
+rHo
+kan
+kan
+kan
+jXf
+kan
+kan
+kan
+cbu
+quT
+kan
+kan
+iXW
+iLs
+bCd
+buH
+hop
+buH
+yhQ
+aue
+aue
+aue
+tGO
+azy
+azy
+azy
+yhQ
+uRr
+bWw
+bWM
+avi
+asE
+suT
+oed
+yhQ
+ajZ
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(138,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+acv
+aez
+boL
+akY
+boL
+aiH
+aiv
+aap
+uoS
+pDm
+lYA
+adb
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+dtM
+ajt
+pvt
+aoe
+pjF
+wUd
+asU
+asU
+asU
+fFO
+mrL
+mrL
+aoe
+yjb
+aEN
+aGX
+aoe
+aLS
+akw
+fOL
+aRS
+ajl
+ahq
+aii
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+atI
+czu
+usi
+foR
+csz
+xCX
+aJU
+baw
+sMM
+baw
+gFd
+trb
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aSm
+aLf
+vXY
+aLf
+aLf
+jiX
+aLf
+aKW
+aeL
+aeL
+aeL
+kHj
+nLg
+nLg
+nLg
+aKW
+aLG
+aZi
+bad
+kan
+kan
+kan
+kan
+xdx
+rlZ
+egc
+thP
+beW
+bTu
+rlZ
+fqZ
+beW
+bgP
+psK
+rlZ
+cFP
+kan
+kan
+kan
+kan
+bGe
+bHL
+buH
+yhQ
+auk
+auk
+auk
+tGO
+azy
+azy
+azy
+yhQ
+pGN
+bWM
+bWM
+avi
+asE
+scI
+oed
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(139,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acv
+aez
+boL
+akY
+wrQ
+aar
+aar
+aar
+aar
+aar
+lYA
+adb
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+dtM
+akU
+wgd
+sqf
+sqf
+sqf
+sqf
+sqf
+sqf
+sqf
+ajl
+ajl
+ajl
+aCo
+aEO
+aHa
+aoe
+cXW
+upM
+akw
+alD
+vEx
+bYe
+akU
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+atI
+czu
+qVM
+qVM
+qVM
+qVM
+qVM
+nTH
+sMM
+baw
+teg
+trb
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKU
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKU
+aKS
+aLL
+iIY
+bCQ
+hhw
+gxr
+bPW
+bbx
+bPU
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+xpI
+aKW
+aLG
+aZi
+aLG
+kan
+bFb
+bFb
+kan
+aYm
+rlZ
+buu
+rlZ
+rlZ
+rlZ
+rlZ
+rlZ
+rlZ
+rlZ
+buu
+rlZ
+dTZ
+kan
+psO
+gjK
+kan
+buH
+bHL
+buH
+yhQ
+aul
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+djp
+bWM
+bWM
+avi
+asE
+nyz
+tVB
+bSf
+bWe
+bWn
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWn
+bWe
+bWe
+bWe
+bWn
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(140,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acf
+aet
+agS
+aiP
+aYq
+aar
+aIZ
+aIZ
+aIZ
+bWK
+lYA
+adb
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+dtM
+akU
+ajC
+sqf
+anp
+wjz
+fnA
+jZY
+jZY
+sqf
+vPj
+aot
+ajl
+ajl
+ajl
+ajl
+ajl
+ajl
+ajl
+onQ
+alD
+ajl
+hon
+akU
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+atI
+czu
+iBt
+iBt
+iBt
+vce
+qVM
+gnv
+yhI
+tTu
+pgD
+tQV
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+pzG
+bby
+aLL
+aLL
+frz
+aLL
+aLL
+aLL
+aLL
+aLL
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+xpI
+aKW
+aLG
+aZi
+aLG
+kan
+bFb
+bFb
+kan
+aZM
+soK
+gDW
+rlZ
+rlZ
+pqD
+pqD
+pqD
+rlZ
+rlZ
+gYl
+frl
+wFb
+wzZ
+tdI
+vbV
+kan
+buH
+hop
+buH
+yhQ
+aul
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+bSf
+bSf
+auW
+bSf
+bSf
+ued
+bSf
+bSf
+cml
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWo
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(141,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acf
+aet
+agB
+akW
+aYs
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+lYA
+vKF
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+dtM
+aii
+ajC
+sqf
+sOZ
+oNJ
+eDo
+eDo
+eDo
+sqf
+jUG
+awM
+gXl
+ajl
+wqW
+awj
+dDL
+aLZ
+ajl
+aCp
+alD
+ajl
+wqA
+aii
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+xMk
+czu
+iBt
+iBt
+iBt
+iBt
+qVM
+vpn
+csI
+goL
+pgD
+tQV
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+bbz
+aLL
+etF
+bbS
+aLL
+coT
+fgh
+rZP
+gmj
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+xpI
+aKW
+bxD
+byI
+beB
+bst
+bst
+bst
+bst
+bst
+bst
+oou
+rlZ
+rlZ
+tiI
+hDR
+oZV
+rlZ
+rlZ
+xMj
+biA
+biA
+biA
+biA
+biA
+biA
+bJz
+bHT
+koc
+yhQ
+aul
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+wcN
+nGi
+bVd
+bUO
+bSf
+weC
+tZc
+bSf
+cmm
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(142,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acv
+aez
+boL
+akY
+boL
+avJ
+aIZ
+aIZ
+aIZ
+aIZ
+lYA
+adb
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+dtM
+ajt
+aik
+sqf
+anq
+awn
+xsz
+jTj
+jTj
+sqf
+xRh
+umC
+dwA
+wJo
+cyU
+eme
+skl
+nzv
+fQu
+akx
+alD
+gWG
+dtM
+aii
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+atI
+czu
+iBt
+iBt
+iBt
+iBt
+qxz
+baw
+sMM
+baw
+wiz
+trb
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+bbz
+aLL
+fXz
+bbS
+aLL
+uUt
+aLW
+aLW
+guS
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+vgF
+aKW
+jgU
+aZi
+aLG
+bst
+bui
+bvz
+bgC
+xfT
+bkE
+bJw
+rlZ
+hBc
+hzs
+hzs
+kDj
+aZK
+rlZ
+hYn
+cpJ
+lQO
+bsQ
+bmj
+caS
+biA
+buH
+bHL
+wWQ
+yhQ
+aun
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+wgR
+bTO
+bTO
+sYP
+bSf
+cpk
+bVd
+bSf
+cmm
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(143,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acv
+aez
+boL
+akY
+aqk
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+lYA
+adb
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+dtM
+aii
+ajC
+sqf
+anr
+awn
+tEi
+asu
+hbI
+sqf
+ajl
+vtx
+ajl
+ajl
+ljL
+fbB
+cyU
+bho
+fQu
+akx
+alD
+gWG
+dtM
+aii
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+atI
+czu
+iBt
+iBt
+iBt
+iBt
+qVM
+xuY
+sMM
+baw
+oby
+trb
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+bbz
+bdy
+bbS
+bbS
+bdy
+bbS
+xka
+uLn
+uoA
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+xpI
+aKW
+aLG
+aZi
+aLG
+bst
+bcR
+bev
+bgA
+eas
+bkE
+bLr
+qni
+hQY
+qni
+qni
+qni
+hQY
+qni
+lJG
+cpJ
+kRd
+bCl
+bsz
+caT
+biA
+buH
+bHL
+buH
+yhQ
+aul
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+hkB
+bTO
+qSm
+cls
+xoJ
+weC
+cls
+bWc
+cmm
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(144,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acf
+aet
+agS
+aiP
+aYq
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+lYA
+adb
+adb
+adb
+lYA
+asm
+asm
+asm
+lYA
+aEI
+aii
+ajC
+sqf
+sqf
+awp
+sqf
+sqf
+sqf
+sqf
+mNI
+sdn
+xNu
+ajl
+vRX
+pth
+axm
+lhv
+ajl
+hVz
+alD
+ajl
+ahr
+aii
+ajC
+czu
+alW
+alW
+alW
+czu
+atI
+atI
+atI
+czu
+iBt
+iBt
+iBt
+iBt
+qVM
+gnv
+yhI
+tTu
+pgD
+tQV
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+pDo
+aLL
+aON
+xYB
+aLL
+rlh
+aLW
+aLW
+gxh
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+xpI
+aKW
+aLG
+aZi
+mzR
+bst
+bcS
+bag
+bgz
+elE
+bgv
+bPz
+dTZ
+qxL
+sYh
+rlZ
+dTZ
+qxL
+sYh
+fFL
+bmc
+jdG
+bCm
+bsP
+hgZ
+biA
+buH
+bHL
+buH
+yhQ
+aul
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+wjC
+bTO
+xMf
+unh
+bSf
+weC
+rfI
+bSf
+qzc
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(145,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acf
+aet
+afB
+akW
+biT
+aar
+aar
+aar
+aar
+aar
+lYA
+adc
+adc
+adc
+lYA
+lYA
+lYA
+lYA
+lYA
+kYU
+akU
+rxG
+ajl
+qhx
+akw
+axl
+gKR
+fvd
+ajl
+ajl
+ajl
+ajl
+ajl
+sYT
+sYT
+tWY
+sYT
+ajl
+nMV
+vIf
+ajl
+aEI
+akU
+gMa
+czu
+czu
+czu
+czu
+czu
+adc
+adc
+adc
+czu
+qVM
+qVM
+qVM
+qVM
+qVM
+crh
+csI
+qhb
+pgD
+tQV
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+bbz
+aLL
+etF
+bbS
+aLL
+djQ
+nFs
+aLW
+gFa
+aKW
+aiR
+aiR
+aiR
+aKW
+xpI
+xpI
+xpI
+aKW
+aLG
+aZi
+aLG
+bst
+buj
+bev
+dBO
+waD
+bkE
+bQM
+rlZ
+izY
+rlZ
+rlZ
+rlZ
+izY
+rlZ
+hZN
+cpJ
+tni
+bCn
+bsz
+hMN
+biA
+buH
+bHL
+buH
+yhQ
+aul
+aul
+aul
+yhQ
+azD
+azD
+azD
+yhQ
+xad
+roG
+mZr
+eax
+bSf
+fvN
+tZc
+bSf
+cmm
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(146,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acv
+aez
+boL
+boL
+boL
+ahl
+cWv
+cWv
+cWv
+cWv
+kaj
+uId
+adH
+adH
+fMA
+atC
+bbL
+aWl
+bbL
+wQg
+akU
+bYe
+bVE
+aos
+akw
+akw
+akw
+alE
+ans
+ans
+asw
+ans
+ans
+ans
+ans
+axm
+ans
+ans
+aos
+alE
+bVE
+bYe
+akU
+aGd
+aWl
+hJu
+bbL
+atC
+aAa
+aww
+aww
+wst
+axs
+bbL
+bbL
+bYe
+bbL
+bit
+baw
+baw
+qYC
+kwo
+trb
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+bbA
+aLL
+aLL
+frz
+aLL
+aLL
+aLL
+aLL
+hrF
+aKW
+aKW
+aKW
+aKW
+aKW
+kaF
+jWU
+jWU
+aKW
+pGM
+aZi
+aLG
+bst
+aYQ
+bbd
+bcL
+bez
+bkE
+bRP
+rlZ
+rlZ
+xsw
+bZn
+kFv
+rlZ
+rlZ
+siW
+cpJ
+bmi
+bnT
+btX
+byc
+biA
+buH
+bHL
+bIR
+yhQ
+cyG
+cyG
+sos
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+bSf
+bSf
+auX
+bSf
+bSf
+ued
+bSf
+bSf
+cmn
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(147,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+acv
+aez
+boL
+asS
+boL
+ceu
+boL
+boL
+boL
+boL
+kGL
+uTY
+azY
+azY
+azY
+atC
+abx
+abx
+abx
+abx
+tal
+ait
+aEe
+akA
+akA
+akA
+akA
+jOG
+akA
+akA
+akA
+akA
+rnN
+akA
+akA
+maT
+akA
+akA
+oap
+aSb
+aEe
+ait
+bjJ
+abx
+abx
+abx
+abx
+atC
+azY
+azY
+azY
+fad
+kGL
+abg
+abg
+abg
+abg
+ajC
+baw
+vbB
+ley
+kwo
+trb
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKS
+aKS
+aKS
+aKS
+aKS
+aKV
+aKS
+aKS
+aKS
+aKS
+aKS
+aKS
+aKV
+aKS
+aLL
+iIY
+bCQ
+hhw
+bPU
+bPS
+cDe
+ipD
+rmN
+buq
+lGh
+aQt
+lDg
+lpD
+wGA
+lpD
+hmc
+tBF
+jWt
+aLG
+bst
+bst
+bst
+bst
+bst
+bst
+cjW
+rlZ
+rlZ
+hrJ
+kan
+biy
+boX
+rlZ
+vMG
+biA
+biA
+biA
+biA
+biA
+biA
+ghD
+vdW
+hvp
+ayE
+azE
+ajd
+azS
+chE
+azI
+ciT
+cjw
+cjS
+ckl
+ckI
+cla
+cly
+voQ
+bVi
+tVB
+bSf
+bWe
+bWp
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWe
+bWp
+bWe
+bWe
+bWe
+bWp
+bWe
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(148,1,1) = {"
+aaa
+aaa
+aab
+bdH
+aae
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+acf
+acf
+boL
+ale
+bDD
+nub
+dux
+iYr
+dux
+ado
+atC
+kHT
+avn
+avn
+mTb
+atC
+avn
+avn
+avn
+nFr
+ajt
+ajC
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+wMO
+wky
+sqf
+hon
+ajt
+mce
+avn
+avn
+avn
+atC
+mTb
+avn
+avn
+aim
+atC
+avn
+bYe
+cre
+avn
+aim
+baw
+dBp
+gVA
+tQV
+tQV
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+afm
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aKR
+aSm
+aLf
+tps
+aLf
+aLf
+xlD
+nMz
+aSm
+hhw
+aNn
+aNO
+asO
+apC
+apC
+apC
+aqx
+aLG
+aYO
+aLG
+kan
+ihw
+beW
+lkW
+biF
+vhX
+akQ
+rlZ
+rlZ
+pnC
+dBH
+bky
+ryt
+rlZ
+wYS
+vhX
+jva
+tAU
+xmT
+tAU
+kan
+buH
+bHL
+buH
+azB
+azT
+azT
+azT
+azG
+bHa
+ccU
+kzP
+cjT
+ckm
+bHa
+clb
+clz
+fiq
+gqK
+oed
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+bVU
+aaa
+aab
+aaa
+aaa
+"}
+(149,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aet
+aet
+biV
+biV
+ekY
+aet
+ekY
+aet
+abE
+abE
+abE
+abE
+abE
+abE
+abE
+abE
+abE
+jKK
+pjM
+aim
+vOy
+nos
+fcy
+drT
+ipQ
+lZZ
+vOy
+oDL
+nEH
+vAQ
+qIL
+ncE
+vWt
+kNx
+vOy
+ayX
+kXw
+pxo
+sqf
+kHT
+pjM
+aim
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+gMA
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aKW
+aSm
+aLf
+hhw
+aQF
+aQF
+aQF
+aQF
+szE
+aQF
+bBb
+jtJ
+asO
+asP
+uKA
+asP
+aqx
+aLG
+aZi
+aLG
+kan
+iMI
+rlZ
+rlZ
+rlZ
+qep
+cnr
+qqK
+qqK
+ayD
+dBH
+bky
+ryt
+rlZ
+buu
+uXf
+wxq
+wJb
+wJb
+bPu
+kan
+buH
+bHL
+buH
+azB
+qKM
+rYj
+ssE
+azG
+uxZ
+vgk
+fiq
+fiq
+fiq
+bTq
+fiq
+fiq
+fiq
+sIx
+oed
+yhQ
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(150,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahx
+aiH
+alf
+arp
+arp
+aiH
+aiH
+aiH
+aet
+kPB
+aci
+aci
+aci
+aci
+gwo
+aed
+aeG
+abE
+atL
+akV
+atL
+vOy
+oNp
+aSn
+lYL
+pNP
+kCj
+vOy
+nLI
+rDV
+dwr
+rDV
+mTd
+gQF
+xXr
+vOy
+niL
+kXw
+pxo
+sqf
+atL
+bkQ
+atL
+qVM
+iBt
+iBt
+iBt
+iBt
+iUZ
+awE
+pQu
+kmL
+qVM
+csz
+qVM
+nLb
+pUi
+wLk
+bIN
+lbb
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aKW
+uDB
+aLf
+hhw
+weR
+aPE
+weR
+vrI
+izk
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+esi
+byI
+beB
+kan
+avW
+bZn
+dXr
+uay
+vhX
+gDW
+rlZ
+rlZ
+pnC
+dBH
+bky
+ryt
+rlZ
+gYl
+vhX
+hCS
+xIk
+cLA
+xIk
+kan
+bJz
+bHT
+quI
+bJt
+bJt
+bJt
+bJt
+bJt
+bJt
+bJt
+fiq
+uaa
+uaa
+uaa
+uaa
+cmX
+fiq
+sIx
+sIx
+yhQ
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(151,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahx
+aiH
+alg
+bBC
+bBC
+aIx
+aIB
+aiH
+aet
+kPZ
+acI
+acj
+vJZ
+wfZ
+adF
+aef
+dWw
+agA
+ago
+snm
+cwJ
+vOy
+anz
+vgx
+hme
+mzq
+qJy
+vOy
+vti
+vti
+fBO
+vti
+gGx
+vti
+lid
+lJv
+aCC
+kXw
+pxo
+asn
+ago
+asW
+cwJ
+qVM
+iBt
+iBt
+iBt
+iBt
+iBt
+awE
+jZU
+rjH
+qVM
+vGk
+qVM
+fdj
+qYW
+oTz
+vGk
+xae
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aKW
+aSm
+aVt
+hhw
+hcZ
+hcZ
+hcZ
+hcZ
+izk
+aWD
+cWr
+jSU
+lXO
+eKT
+wan
+cTC
+aQF
+pno
+aYO
+bad
+xMs
+xMs
+xMs
+xMs
+xMs
+xMs
+cjW
+rlZ
+rlZ
+jbO
+kan
+quv
+rZB
+rlZ
+wxc
+vMo
+vMo
+vMo
+vMo
+vMo
+vMo
+bGe
+bHL
+smn
+bJt
+xOL
+gGI
+eeu
+nbB
+ksA
+gAz
+fiq
+uaa
+uaa
+uaa
+uaa
+uaa
+fiq
+oed
+bxX
+yhQ
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(152,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aet
+avx
+ahN
+uli
+uli
+uli
+bWf
+aet
+lwC
+aTT
+acl
+xxi
+qJj
+adF
+aef
+aef
+uZZ
+bYe
+amO
+avj
+vOy
+awQ
+oLU
+thN
+vDa
+vOy
+vOy
+qfy
+inL
+oiY
+ueJ
+ueJ
+oDi
+trF
+lJv
+edv
+kXw
+pxo
+asn
+ayT
+akU
+avj
+qVM
+iBt
+iBt
+iBt
+iBt
+iBt
+awE
+cvj
+iiz
+qVM
+oLw
+qVM
+qVM
+qVM
+xeG
+qVM
+qVM
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aKW
+bhC
+bPT
+hhw
+jKh
+hcZ
+rDv
+bmW
+jWu
+aWD
+aqo
+aRy
+aRy
+aRy
+aRy
+nIj
+aQF
+aWM
+aZi
+aLG
+xMs
+aSO
+feY
+xEz
+bgn
+bgw
+eXb
+rlZ
+rlZ
+thP
+beW
+bgP
+rlZ
+rlZ
+hAU
+xqy
+bmk
+wZE
+iGn
+byd
+vMo
+buH
+bHL
+buH
+lhB
+pOY
+bDs
+jge
+bDs
+bDs
+hLC
+fiq
+uaa
+uaa
+uaa
+uaa
+uaa
+fiq
+oed
+sIx
+yhQ
+ajZ
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(153,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aet
+avV
+uli
+uli
+uli
+mov
+bWq
+aet
+lhX
+aXc
+acl
+jlN
+qqn
+adF
+bls
+aeH
+agq
+ahM
+kSJ
+avj
+vOy
+hng
+dnC
+hPN
+vCk
+qEn
+qam
+riE
+gAS
+lMv
+dVu
+eSo
+qmD
+wsx
+lJv
+aCt
+kXw
+pxo
+asn
+ayT
+aii
+avm
+qVM
+iBt
+iBt
+iBt
+iBt
+iBt
+awE
+aGt
+ijn
+qVM
+vGk
+vGk
+gYS
+weU
+csz
+eGz
+csz
+czu
+aaa
+aac
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+bdH
+aad
+aKW
+aSm
+xCm
+hhw
+mTi
+lJK
+kYV
+hhn
+aQp
+aQG
+ulZ
+aRA
+aRA
+bQU
+bQU
+bjD
+dqE
+aem
+mUa
+uLv
+xMs
+lOH
+dUS
+bcP
+dSX
+bgw
+fbw
+rlZ
+rlZ
+pqD
+pqD
+pqD
+rlZ
+rlZ
+rFH
+xqy
+aGg
+bof
+vit
+dxu
+vMo
+buH
+bHL
+buH
+lhB
+nbB
+bDs
+bIJ
+bDs
+bDs
+qJS
+fiq
+uaa
+uaa
+uaa
+uaa
+uaa
+fiq
+oed
+oed
+yhQ
+ajZ
+aaa
+avo
+avo
+avo
+avo
+avo
+avo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(154,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahx
+aez
+uli
+aIx
+uli
+uli
+mov
+bWq
+aet
+lhX
+eYM
+uuR
+dHu
+qqn
+adF
+aef
+kqN
+agA
+ayT
+ajt
+avm
+vOy
+xyt
+wiW
+tOr
+dBj
+wei
+kBP
+kBP
+jsx
+tjn
+aCC
+kXw
+pQP
+qAT
+vOy
+vOy
+mFq
+vqW
+sqf
+ybf
+aii
+avj
+qVM
+awE
+awE
+awE
+nec
+awE
+awE
+xJC
+awE
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+vGk
+csz
+czu
+aaa
+aad
+aag
+aag
+aag
+aag
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+bdH
+aad
+aKW
+aSm
+xnY
+hhw
+aQF
+aQF
+aPH
+xIQ
+hcZ
+aWD
+rrK
+aRy
+feI
+brb
+cpp
+buv
+aWF
+aLG
+aZi
+aLG
+xMs
+akE
+qGF
+bcV
+bgr
+bgy
+fxZ
+rlZ
+aZK
+vYt
+fDj
+eBZ
+hBc
+rlZ
+pKZ
+bmd
+bnR
+ggz
+dka
+bye
+vMo
+buH
+bHL
+buH
+lhB
+aQW
+bDs
+bNw
+wIG
+wLK
+hAz
+bJt
+bJt
+bJt
+bJt
+bJt
+bJt
+bJt
+oed
+eHf
+yhQ
+ajZ
+avo
+avo
+avs
+avs
+avs
+avs
+avo
+avo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(155,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahx
+aez
+uli
+uli
+uli
+uli
+uli
+aiH
+aet
+lhX
+acl
+acl
+acl
+qqn
+aef
+aef
+tRD
+abE
+aTL
+ajt
+avj
+vOy
+iYf
+bIM
+wPz
+iUo
+vOy
+xqp
+lzA
+vkp
+tjn
+aCC
+kXw
+vtm
+emK
+fGu
+hPe
+sdu
+btC
+vLj
+ahM
+kSJ
+avj
+cGr
+awE
+fUn
+wQv
+rne
+guC
+ecQ
+whZ
+awE
+lEf
+gel
+gel
+gel
+fkX
+qVM
+vGk
+ofs
+czu
+aaf
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+uDB
+aLf
+hhw
+weR
+aPE
+izk
+xIQ
+vse
+aQF
+blp
+aRy
+aTn
+aTY
+iCF
+gJP
+aQF
+qcl
+aZi
+aLG
+xMs
+aYR
+dUS
+mqU
+bgs
+bgw
+icw
+qni
+klH
+tgV
+tgV
+tgV
+klH
+qni
+uah
+xqy
+jhn
+jZd
+vit
+bzo
+vMo
+buH
+bHL
+buH
+lhB
+pxD
+bDs
+gSk
+bDs
+bDs
+bDs
+xjb
+fbo
+duo
+iIl
+bDs
+ujV
+bJt
+oed
+oed
+yhQ
+ajZ
+avo
+avs
+avs
+hAG
+vtr
+avs
+avs
+avo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(156,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+ahy
+avZ
+ipK
+ipK
+ipK
+uli
+bWf
+aet
+lhX
+acl
+acl
+acl
+qqn
+adF
+aef
+afs
+agA
+ayT
+akU
+avj
+vOy
+mTp
+wiW
+wPz
+jeq
+rQy
+wWR
+ycj
+vkp
+cfT
+hec
+gNp
+hVf
+dVu
+rmc
+lON
+dVu
+oDR
+vOP
+bYe
+bnD
+aWH
+aYn
+bVB
+bXv
+bXv
+bph
+rEm
+rne
+bYj
+xne
+rfb
+cXF
+rLU
+dKp
+cHu
+qVM
+vGk
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+aSm
+gfS
+hhw
+lHc
+hcZ
+izk
+hds
+aQF
+aQF
+haQ
+aRy
+boY
+qZH
+bsN
+buB
+aWD
+aLG
+aZi
+aLG
+xMs
+bXw
+eiw
+bda
+bgt
+bgw
+jxi
+rlZ
+rlZ
+rlZ
+rlZ
+rlZ
+rlZ
+rlZ
+nrN
+xqy
+nYD
+boh
+qDP
+wbP
+vMo
+buH
+bHL
+vMx
+bJt
+qom
+bDs
+rAx
+jFE
+fuS
+jFE
+jFE
+jFE
+jFE
+idx
+hAz
+fhQ
+bJt
+vhI
+oed
+avo
+avo
+avo
+avs
+rKn
+awa
+awa
+umm
+avs
+avo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(157,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aet
+aIx
+ipK
+ceC
+eRR
+uli
+bWq
+aet
+loV
+acK
+acm
+acK
+esK
+adD
+sOw
+afs
+agA
+ayT
+akU
+avj
+vOy
+axn
+dRh
+ydE
+bST
+rQy
+vOy
+vdO
+vkp
+aoM
+kBo
+kBP
+naR
+vOy
+hrn
+vOy
+aRd
+aIo
+vOy
+qLK
+akU
+avj
+kpl
+awE
+xgr
+bYj
+btz
+bsc
+iaj
+bYj
+xne
+rLv
+bHk
+vZw
+bHk
+cHu
+qVM
+csz
+qVM
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+aLf
+aSm
+tps
+aNs
+aNs
+hyw
+mzz
+aQF
+aQF
+blj
+aRy
+bpa
+fHF
+bml
+buB
+aWD
+beB
+byI
+beB
+xMs
+xMs
+xMs
+xMs
+xMs
+xMs
+jGn
+rlZ
+ggJ
+oXY
+bZn
+kFv
+dut
+rlZ
+sPJ
+vMo
+vMo
+vMo
+vMo
+vMo
+vMo
+bJz
+bHT
+uFP
+bJt
+bJt
+nFI
+qdk
+vzP
+bJt
+hjB
+bJt
+pxd
+bDs
+gSk
+bDs
+pdt
+bJt
+kTq
+oed
+lpy
+avC
+avC
+wEg
+axa
+axa
+dSZ
+oMs
+avs
+avo
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(158,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aet
+uli
+ipK
+awe
+fwD
+uli
+oGy
+aet
+lhX
+acl
+acl
+acl
+qqn
+adF
+aef
+afs
+agA
+ayT
+akU
+avj
+vOy
+aAr
+pGK
+tpa
+tpa
+tpa
+vOy
+dHV
+vkp
+jUM
+lou
+eBO
+pRn
+vOy
+ayZ
+aCD
+hFC
+qmy
+vOy
+ayT
+akU
+avj
+awE
+awE
+bqy
+bYj
+eUR
+bsd
+qZF
+bYj
+xne
+cNH
+vzp
+vZw
+erd
+cHu
+qVM
+hoX
+qVM
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+eWY
+aSm
+hhw
+hcZ
+hcZ
+izk
+uhl
+aQF
+aQF
+blf
+aRy
+kkt
+htL
+aUL
+buB
+aWD
+aLG
+aZi
+aLG
+nyw
+iXU
+hDw
+kzb
+pha
+kan
+kan
+mwM
+wmQ
+kan
+kan
+kan
+mwM
+eRy
+kan
+kan
+rIO
+vEH
+uFH
+tQd
+nyw
+buH
+bHL
+buH
+yfS
+sEi
+dck
+quV
+doJ
+loY
+tOW
+lkd
+dYR
+bDs
+gSk
+reL
+wiI
+bJt
+nnr
+eep
+avo
+avo
+avo
+avs
+awa
+awa
+awa
+qUp
+avs
+avo
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(159,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aet
+avx
+ipK
+ipK
+ipK
+uli
+bWq
+aet
+lhX
+acl
+acl
+acl
+qqn
+aef
+aef
+pHG
+abE
+aTL
+aii
+avj
+vOy
+aID
+gLc
+mKx
+iit
+kZV
+vOy
+vOy
+oIr
+vOy
+wdo
+vOy
+vOy
+vOy
+qqQ
+aoM
+aoM
+vgB
+kgs
+ayT
+aii
+avj
+aYp
+aWS
+bYj
+bYj
+btz
+rne
+rne
+bYj
+xne
+rfb
+bHk
+vZw
+bHk
+cHu
+qVM
+csz
+qVM
+czu
+aah
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+wyO
+lpX
+hhw
+mTi
+lJK
+izk
+xIQ
+vyp
+aQF
+blw
+aRy
+aTr
+aTZ
+aUM
+gJP
+aQF
+lRU
+aYO
+aLG
+nyw
+beH
+dcd
+beH
+bqZ
+beH
+neS
+beH
+beH
+tJR
+rRU
+oEw
+beH
+beH
+neS
+beH
+bqZ
+beH
+beH
+beH
+nyw
+buH
+bHL
+buH
+yfS
+hgL
+swt
+wSX
+wpI
+ktX
+smi
+lkd
+tsa
+bDs
+gSk
+bDs
+vwI
+bJt
+koz
+sIx
+yhQ
+ajZ
+avo
+avs
+avs
+loK
+wpg
+avs
+avs
+avo
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(160,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+ahx
+aez
+uli
+uli
+uli
+uli
+uli
+oWz
+aet
+lhX
+gsZ
+uxO
+bTt
+qqn
+adF
+aef
+aGS
+agA
+ayT
+aii
+avj
+vOy
+aMd
+pGK
+pRX
+mHD
+pRX
+vOy
+jFf
+vkp
+jrM
+mWs
+lmw
+vOy
+dyb
+tsM
+prx
+fpT
+eVT
+kgs
+ayT
+aii
+avj
+aYp
+aZJ
+baD
+baD
+tsH
+bqw
+bqw
+hiB
+xne
+rLv
+pRy
+wwW
+mRW
+cHu
+qVM
+vGk
+csz
+czu
+aaa
+aad
+aag
+aag
+aag
+aag
+aah
+afm
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+aVt
+eZz
+hhw
+aQF
+aQF
+sPc
+xIQ
+hcZ
+aWD
+olM
+aRy
+aRy
+eXr
+iFH
+buv
+aWE
+aLG
+avX
+aem
+aum
+emr
+emr
+emr
+uNB
+quq
+duv
+beH
+beH
+beH
+bqZ
+beH
+beH
+beH
+fcf
+beH
+pmH
+rCO
+rCO
+rCO
+eVv
+bFu
+lAO
+buH
+ykj
+rlQ
+ven
+agH
+wxU
+tvM
+smi
+lkd
+rBj
+bDs
+gSk
+bDs
+oMd
+bJt
+sIx
+uqH
+yhQ
+ajZ
+avo
+avo
+avs
+avs
+avs
+avs
+avo
+avo
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(161,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+ahx
+aez
+aIB
+aKg
+uli
+uli
+mov
+bWq
+aet
+lhX
+kNO
+acl
+jlN
+qqn
+adF
+aef
+nIS
+uZZ
+bYe
+aii
+avj
+vOy
+aMg
+aSo
+pRX
+mHD
+tzL
+vOy
+vqZ
+vkp
+rDr
+usy
+nDo
+vOy
+glB
+vkp
+ger
+aoM
+aFf
+mmN
+ayT
+aii
+avj
+aYp
+sQL
+dpV
+bXW
+bqo
+bse
+bvc
+djL
+awE
+qWR
+wJH
+wJH
+wJH
+sNR
+qVM
+vGk
+csz
+czu
+aaa
+aae
+aah
+aah
+aah
+afm
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+aLf
+aSm
+hhw
+weR
+aPE
+izk
+uhP
+aQq
+aQH
+upO
+pOi
+pOi
+pOi
+pOi
+nVF
+aWF
+aLG
+aYO
+aLG
+nyw
+eGZ
+ieX
+pfM
+bqZ
+rEf
+rWT
+emr
+emr
+usX
+vKe
+rCO
+rCO
+rCO
+vVd
+eBg
+wRT
+bhq
+dcd
+eTd
+nyw
+buH
+vdW
+qLp
+kKk
+rDt
+gpI
+xwp
+fLg
+tvM
+dfC
+cEi
+bJt
+oKb
+gSk
+bDs
+pdt
+bJt
+sIx
+bxX
+yhQ
+ajZ
+aaa
+avo
+avo
+avo
+avo
+avo
+avo
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(162,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+lYA
+aet
+aJJ
+aIB
+uli
+uli
+mov
+bWq
+aet
+lwC
+tIK
+acl
+sNO
+qJj
+adF
+aef
+nIS
+eWF
+bYe
+aii
+avj
+vOy
+aQZ
+bkT
+pRX
+mHD
+pRX
+vOy
+foP
+sZy
+vEr
+irU
+bVe
+vOy
+ggl
+jjS
+qMP
+kBP
+aSl
+vOy
+aTL
+aii
+avm
+awE
+awE
+awE
+awE
+mZA
+awE
+awE
+awE
+awE
+awE
+qVM
+qVM
+qVM
+qVM
+qVM
+vGk
+ofs
+czu
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+xxe
+aLf
+hhw
+hcZ
+hcZ
+uFd
+mUq
+qwt
+aWD
+bng
+bmX
+bmX
+tou
+tou
+jhy
+aQF
+beB
+aYT
+jfD
+bdd
+bdd
+bdd
+bdd
+bdd
+qCc
+fUA
+beH
+spF
+uBN
+bqZ
+jMr
+eGZ
+beH
+fUA
+qYZ
+bdd
+bdd
+bdd
+bdd
+bdd
+fZx
+bHT
+bJz
+yfS
+ape
+ven
+njJ
+kiM
+tvM
+smi
+lkd
+kvU
+idX
+cnu
+bDs
+knK
+bJt
+oed
+vgQ
+yhQ
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(163,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+lYA
+aet
+avx
+ahN
+aIB
+aKg
+uli
+bWf
+aet
+abK
+acL
+acn
+cRK
+dXV
+adF
+aef
+kqN
+agA
+ayT
+akU
+avj
+vOy
+dVd
+lea
+hKl
+lDN
+kZV
+vOy
+vOy
+eNI
+eNI
+eNI
+vOy
+vOy
+hRa
+vti
+vti
+vti
+aEZ
+vOy
+ayT
+akU
+avj
+aCv
+baa
+fqe
+bXx
+bqo
+awE
+tnm
+dhQ
+qyz
+awE
+vGk
+vGk
+gYS
+vzl
+csz
+vGk
+csz
+czu
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+dgN
+aLf
+hhw
+hcZ
+hcZ
+hcZ
+hcZ
+pQY
+aWD
+bll
+bll
+bpo
+dVO
+bsR
+aQr
+aQF
+aLG
+aYO
+aLG
+tda
+ngI
+dkq
+lRZ
+acc
+beH
+beH
+dwl
+bdd
+bdd
+gac
+bdd
+bdd
+aMt
+beH
+beH
+acc
+qby
+btY
+bAJ
+huU
+buH
+bHL
+buH
+yfS
+ape
+ven
+bWT
+fKV
+tvM
+smi
+lkd
+qTY
+bDs
+gSk
+ljG
+tSp
+bJt
+oed
+sHg
+yhQ
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(164,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+ahx
+aiH
+uli
+bLO
+bLO
+bLO
+bLO
+aiH
+qga
+eAU
+eAU
+eAU
+eAU
+eAU
+fcE
+aef
+uNN
+abE
+giB
+akU
+avj
+vOy
+vOy
+vOy
+mSK
+mSK
+mSK
+vOy
+vOy
+ylc
+wKP
+ylc
+vOy
+vOy
+rhO
+pgM
+nPE
+oqZ
+uaI
+vOy
+atV
+akU
+avj
+aCv
+bac
+dWz
+bYj
+bqo
+aRD
+aGt
+byp
+aGt
+awE
+vGk
+qVM
+qVM
+qVM
+qVM
+csz
+qVM
+czu
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+bhC
+aLf
+hhw
+mTi
+lJK
+mTi
+lJK
+kmp
+aQF
+bln
+xEX
+aQF
+aQF
+aQF
+aQF
+aQF
+ePA
+akO
+bwd
+bdg
+vyg
+bni
+cwX
+vuA
+nVi
+nVi
+nVi
+vuA
+tab
+udi
+wCs
+vuA
+nVi
+nVi
+nVi
+vuA
+snb
+xbd
+bAU
+bdg
+bCi
+bCo
+ivB
+bJt
+wbC
+lHu
+oiL
+qBM
+wXI
+nUd
+lkd
+oMd
+bDs
+gSk
+oDE
+bJt
+bJt
+oed
+sIx
+yhQ
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(165,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahx
+aiH
+aiH
+bWd
+awi
+bWd
+mOb
+aiH
+aet
+aBD
+acU
+uPr
+sTd
+lfH
+aeI
+eva
+xzf
+abE
+aTL
+aii
+ali
+amD
+cwJ
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+eNI
+eNI
+eNI
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vIN
+aii
+avj
+aCv
+ilv
+rne
+rne
+gEK
+eHj
+bvl
+byq
+maq
+awE
+vGk
+qVM
+riM
+rGl
+qVM
+hoX
+qVM
+czu
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aKW
+efU
+aLf
+hhw
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+ktB
+gCd
+eJg
+hhw
+aeb
+alx
+aeb
+bdg
+apz
+dyd
+fyD
+bdd
+dhR
+dhR
+dhR
+vuA
+eYu
+qaW
+wbN
+vuA
+lVS
+lVS
+lVS
+bdd
+vPw
+bvr
+bBQ
+bdg
+bCj
+bDx
+bCj
+rde
+vjC
+iMm
+mJi
+iMm
+iMm
+mkc
+bJt
+xaN
+bDs
+gSk
+luS
+bJt
+iGg
+oed
+sIx
+yhQ
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(166,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aar
+tiM
+aar
+aar
+aNi
+aNi
+bWr
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+atV
+aii
+abx
+abx
+avj
+vOy
+elR
+xXh
+xXh
+xXh
+dMK
+aCR
+aAT
+aNY
+elR
+xXh
+xXh
+xXh
+dMK
+vOy
+vOy
+vOy
+ayT
+aii
+avj
+awE
+ceo
+rne
+rne
+wft
+awE
+awE
+awE
+awE
+awE
+vGk
+xCX
+vGk
+hoX
+qVM
+sCC
+qVM
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+bdH
+aad
+aKW
+aSm
+aSm
+hhw
+beG
+dIR
+yky
+bfb
+baY
+hhw
+aLF
+bPV
+yaG
+bPU
+aSm
+bPS
+hhw
+bwd
+auv
+bwd
+bdg
+auj
+bbf
+ber
+vuA
+nVi
+nVi
+nVi
+vuA
+jkz
+ngI
+xGJ
+vuA
+nVi
+nVi
+nVi
+vuA
+bpv
+tMW
+bBY
+bCh
+bCi
+bCo
+bCi
+ejw
+xML
+iMm
+jSy
+wGb
+iMm
+rjn
+bJt
+wUX
+bDs
+gSk
+vSp
+lHG
+qgH
+sIx
+sIx
+yhQ
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(167,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+lYA
+aiS
+aao
+aao
+acD
+aNi
+cYT
+aNm
+cYT
+lEF
+beZ
+vif
+bhx
+aOR
+bhx
+vif
+aOR
+bsw
+ayT
+xGk
+all
+amK
+avj
+vOy
+wWz
+vHO
+ruc
+uvP
+wTM
+dNq
+vVs
+aFa
+wWz
+liY
+ruc
+xOY
+wTM
+vOy
+nzA
+amD
+ajr
+aii
+avm
+awE
+hfm
+rne
+rne
+fAo
+awE
+bhM
+wQv
+bBi
+awE
+ieH
+qVM
+tUI
+mcV
+qVM
+vGk
+csz
+czu
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aac
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aSm
+aLf
+hhw
+beI
+bTQ
+tBP
+jfm
+lYu
+maw
+fAS
+jfm
+lzn
+eDz
+jfm
+jfm
+bUP
+aLG
+aYO
+aLG
+tda
+mng
+wTm
+wCI
+acc
+beH
+beH
+beH
+acc
+mng
+wTm
+wCI
+acc
+beH
+beH
+beH
+acc
+mng
+wTm
+wCI
+tda
+buH
+bHL
+buH
+bJt
+swE
+wpI
+ocm
+wpI
+wnL
+kHd
+bJt
+hSw
+qxE
+rui
+vSp
+bJt
+wuH
+oed
+uqH
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(168,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aiT
+aap
+aao
+aap
+aNi
+aZe
+aNm
+aNm
+lRP
+beE
+bhx
+bhx
+hMi
+aco
+aco
+dYu
+bsw
+mQH
+hee
+aEX
+aii
+avm
+vOy
+wWz
+anw
+wLy
+jlG
+aqP
+kCE
+wLN
+npt
+xuE
+hqh
+wLy
+eiE
+wTM
+vOy
+ayT
+akT
+amC
+bKe
+avj
+aCv
+eYW
+rne
+rne
+wft
+emO
+bYj
+bYj
+bYj
+awE
+csz
+qVM
+qVM
+qVM
+qVM
+oLw
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aKW
+aKW
+bPU
+lLV
+aLf
+aLf
+aLf
+jiX
+aSm
+aSm
+aLf
+ahU
+aLf
+fza
+kat
+uJB
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+teH
+mUa
+xNB
+bdd
+vuA
+vuA
+vuA
+bdd
+qCc
+fUA
+qYZ
+bdd
+vuA
+fnx
+vuA
+bdd
+qCc
+fUA
+qYZ
+bdd
+vuA
+vuA
+vuA
+bdd
+bSj
+bHL
+bIR
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bJt
+cDC
+vuF
+bJt
+bJt
+oed
+sIx
+sIx
+sIx
+qNy
+cLV
+sIx
+sIx
+sIx
+yhQ
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(169,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aiU
+aap
+aap
+aap
+aNi
+aZr
+aNm
+aNm
+lTE
+beE
+bhx
+bhx
+aOR
+bhx
+bhx
+cCa
+aNi
+aNi
+aNi
+ybf
+ajt
+avj
+vOy
+wWz
+ovG
+gxP
+aPJ
+wTM
+apS
+wse
+aFa
+wWz
+ual
+gxP
+aOe
+wTM
+vOy
+atU
+akU
+abg
+abg
+avj
+aCv
+aSP
+rne
+rne
+wft
+awE
+hpf
+byY
+igp
+awE
+hoX
+qVM
+oks
+vGk
+qVM
+vGk
+ofs
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aKW
+bPV
+aLf
+xlD
+aSm
+aSm
+aSm
+aLf
+aLf
+aLf
+aMs
+hhw
+pgt
+ykF
+bgH
+uVb
+bdd
+pfe
+wsP
+izr
+aSh
+ccF
+tGG
+tGG
+bdg
+aLG
+awb
+aLG
+bdg
+bqZ
+bqZ
+bqZ
+bCg
+beH
+fUA
+beH
+bCg
+bqZ
+beH
+bqZ
+bCg
+beH
+fUA
+beH
+bCg
+bqZ
+bqZ
+bqZ
+bdg
+buH
+hOR
+buH
+bdg
+sNI
+wAU
+diw
+csG
+sNI
+wNT
+wbe
+bdd
+qXo
+feq
+loY
+aDU
+bJt
+oed
+sIx
+oed
+sIx
+mOU
+sIx
+sIx
+oed
+oed
+sIx
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(170,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aiZ
+aap
+aao
+aap
+aNi
+aZs
+aNm
+aNm
+mwL
+beE
+bhx
+bhx
+aOR
+bhx
+bhx
+qiy
+ahR
+ahR
+egt
+ait
+ani
+avj
+vOy
+woh
+vgO
+aoJ
+alk
+xAe
+avH
+wse
+cXC
+woh
+pLO
+qxm
+vgO
+xAe
+vOy
+aOP
+aii
+aow
+hee
+ioX
+aCv
+aLQ
+bYj
+bYj
+wft
+awE
+awE
+awE
+awE
+awE
+csz
+iid
+csz
+hoX
+qVM
+noV
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aKW
+aSm
+aLf
+nsY
+nsY
+pRT
+nsY
+nsY
+nsY
+nsY
+nsY
+nsY
+hhw
+hhw
+umv
+hhw
+bdd
+bqZ
+kbV
+tGG
+tGG
+tGG
+tGG
+tGG
+bdg
+aLG
+aYO
+aLG
+bdg
+bqZ
+beH
+beH
+beH
+beH
+fUA
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+fUA
+beH
+beH
+beH
+beH
+bqZ
+bdg
+buH
+bHL
+buH
+bdg
+sNI
+sNI
+sNI
+sNI
+dkH
+cKX
+bqZ
+bdd
+tLc
+rsM
+iMm
+hTT
+nsY
+nsY
+nik
+nsY
+nsY
+nsY
+nsY
+nsY
+nsY
+upt
+sIx
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(171,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+adf
+aao
+aao
+aao
+aNi
+jWr
+aNm
+jWr
+mBJ
+dtZ
+bhx
+bhx
+wWg
+aco
+aco
+hpY
+aOR
+aOR
+bgK
+bYe
+ajt
+avj
+vOy
+vOy
+vOy
+uqd
+amk
+pYo
+avF
+coJ
+iAz
+cQo
+aIP
+aoK
+vOy
+vOy
+vOy
+asp
+aii
+avj
+qVM
+qVM
+awE
+ntr
+bYj
+bYj
+wft
+bvU
+dTc
+lOl
+mkx
+awE
+ieH
+qVM
+dYK
+csz
+iid
+csz
+qVM
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLf
+aSm
+nsY
+xWT
+kxd
+jgk
+nsY
+rSG
+wWJ
+oqS
+nsY
+lhu
+btk
+aSm
+eoM
+bdd
+vTt
+kbV
+tGG
+tGG
+tGG
+tGG
+tGG
+bdg
+aLG
+aYO
+aLG
+bdg
+bqZ
+beH
+aLJ
+bmr
+beH
+beH
+beH
+eGB
+jMR
+ufh
+mEE
+sTw
+beH
+beH
+beH
+rJK
+gBo
+beH
+bqZ
+bdg
+buH
+bHL
+buH
+bdg
+sNI
+csG
+sNI
+sNI
+gNi
+wNT
+cab
+bdd
+hxZ
+rsM
+iMm
+gzV
+nsY
+xWT
+kxd
+viu
+nsY
+rSG
+qkP
+oqS
+nsY
+sIx
+sIx
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(172,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+fZF
+aWs
+aar
+tiM
+aNi
+aNi
+aNi
+aNi
+aNi
+aOR
+eVQ
+aOR
+aOR
+aOR
+eVQ
+aOR
+aOR
+agr
+aNi
+ayT
+amO
+avj
+vOy
+vOy
+vOy
+vOy
+vKb
+rzN
+avG
+jbK
+aOd
+sXd
+aJn
+vOy
+vOy
+vOy
+vOy
+meJ
+amO
+avj
+qVM
+csz
+awE
+qMe
+bYj
+bYj
+dyF
+awE
+bzs
+gbQ
+eKK
+awE
+oLw
+qVM
+jmR
+vGk
+qVM
+hoX
+qVM
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLf
+aSm
+nsY
+xWT
+kxd
+viu
+nsY
+iIP
+nna
+dDt
+nsY
+xiz
+aSm
+aSm
+kOf
+bdd
+bDQ
+kbV
+tGG
+okB
+tGG
+crK
+tGG
+bdg
+beB
+aYT
+beB
+bCx
+bqZ
+beH
+bgO
+boq
+boq
+boq
+boq
+wNT
+pVB
+hsg
+iPv
+kbV
+uMk
+uMk
+uMk
+uMk
+bgO
+beH
+bqZ
+bCx
+buH
+bHL
+buH
+bdg
+sNI
+sNI
+sNI
+sNI
+eCS
+xqM
+udV
+bdd
+hTf
+rsM
+oos
+sBL
+nsY
+xWT
+rfT
+viu
+nsY
+dmR
+kxd
+dDt
+nsY
+sIx
+oed
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(173,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aar
+aar
+aar
+awJ
+aao
+fZF
+fZF
+fZF
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+asp
+amO
+avj
+bPF
+aqG
+ata
+vOy
+apR
+aqS
+mnW
+nPf
+vYz
+awR
+uoi
+vOy
+aMh
+biB
+alH
+aTL
+akU
+avj
+qVM
+csz
+awE
+awE
+awE
+hIL
+awE
+awE
+awE
+awE
+awE
+awE
+vGk
+qVM
+qVM
+qVM
+qVM
+csz
+qVM
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLa
+aSm
+nsY
+gsg
+vHq
+vvY
+nsY
+pPV
+umY
+npB
+nsY
+glr
+mhl
+aSm
+ylY
+bdd
+bqZ
+qgw
+beH
+qMR
+vlR
+dRT
+qin
+pmv
+tBF
+fSK
+aLG
+nyw
+bqZ
+beH
+bgO
+boq
+boq
+boq
+boq
+wNT
+vBp
+kNl
+nhi
+kbV
+uMk
+uMk
+uMk
+uMk
+tmB
+eBg
+vKe
+eVv
+bFu
+omW
+bFu
+hLS
+eBg
+eBg
+eBg
+eBg
+fOk
+epq
+bqZ
+bdd
+hTf
+rKO
+wGb
+gUf
+nsY
+gwM
+bxC
+pJD
+nsY
+iSm
+bxC
+jiU
+nsY
+sIx
+oed
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(174,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+aao
+aap
+aap
+aao
+aap
+aap
+ahg
+aao
+aap
+aap
+aap
+aap
+aao
+acD
+aao
+aap
+aap
+rfg
+bYe
+amO
+bYe
+cbg
+aqG
+atb
+vOy
+xSY
+rzN
+lCt
+lto
+paa
+sXd
+gVq
+vOy
+aMi
+biB
+apI
+bYe
+akU
+bYe
+xCX
+vGk
+vGk
+csz
+vzl
+bvY
+vGk
+vGk
+csz
+vzl
+csz
+vGk
+vGk
+vGk
+gYS
+weU
+vGk
+csz
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aKW
+aLf
+aSm
+nsY
+nsY
+qxC
+nsY
+nsY
+nsY
+ntx
+nsY
+nsY
+jFe
+sxe
+xZI
+mNZ
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+aLG
+awb
+aLG
+bdg
+bqZ
+beH
+bgO
+boq
+boq
+boq
+boq
+wNT
+vBp
+hWs
+nhi
+kbV
+uMk
+uMk
+uMk
+uMk
+bgO
+beH
+bqZ
+bdg
+buH
+hOR
+buH
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+tuo
+rsM
+oos
+gUf
+nsY
+nsY
+iFM
+nsY
+nsY
+nsY
+gLZ
+nsY
+nsY
+sIx
+uqH
+yhQ
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(175,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+dxF
+dxF
+aaH
+aam
+aam
+aam
+aam
+aam
+aam
+aam
+lYA
+qsd
+aap
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+aej
+aej
+aej
+aej
+iiC
+amO
+tHh
+vOy
+vOy
+vOy
+vOy
+msi
+kDk
+kbJ
+cJM
+jlA
+qLi
+dEm
+vOy
+vOy
+vOy
+vOy
+apv
+akU
+jHG
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+vGk
+csz
+czu
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+nnD
+aZF
+aZF
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aKW
+aKW
+aKW
+aSm
+aLf
+nsY
+tUS
+bNh
+wNl
+nGh
+fPp
+lqN
+kjV
+nsY
+xCN
+pOB
+hfk
+aLf
+bdd
+bqZ
+kKL
+aLJ
+eBg
+dAO
+cEG
+eBg
+dYX
+tBF
+lBz
+aLG
+iuy
+bqZ
+beH
+bgO
+boq
+boq
+boq
+boq
+wNT
+pUA
+wga
+mfM
+kbV
+uMk
+uMk
+uMk
+uMk
+bgO
+beH
+bqZ
+bdg
+buH
+uXu
+bFu
+iUk
+eBg
+gkJ
+eBg
+eBg
+mVZ
+kTx
+bqZ
+bdd
+hTf
+wRO
+iMm
+gUf
+nsY
+aaq
+wHj
+qdv
+uQo
+iQt
+uZo
+xmJ
+nsY
+oed
+sIx
+yhQ
+yhQ
+yhQ
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(176,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+dxF
+dxF
+aaH
+aam
+aam
+aam
+aam
+aam
+aam
+aam
+lYA
+abe
+aap
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+ajQ
+aIZ
+aIZ
+aIZ
+aIZ
+ajQ
+aej
+aeO
+afG
+ags
+aej
+ayT
+amO
+avj
+vOy
+elR
+xXh
+xXh
+apU
+taH
+aBe
+otu
+jBO
+jNc
+ean
+xXh
+xXh
+dMK
+vOy
+ayT
+akU
+avj
+qVM
+nNA
+ekO
+nNA
+qVM
+iBt
+iBt
+iBt
+iBt
+aJM
+iBt
+iBt
+iBt
+iBt
+aJM
+qVM
+vGk
+xIb
+czu
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+nnD
+aZF
+aZF
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aKW
+bPT
+jiX
+aSm
+aLf
+nsY
+kio
+sJY
+qJY
+qLH
+xTW
+oGP
+cnM
+nsY
+nEA
+lQu
+lQu
+aSm
+bdd
+bDQ
+iWE
+jUo
+wmz
+wmz
+wwk
+wmz
+bdg
+aLG
+awb
+aLG
+bdg
+bqZ
+bqZ
+bgO
+beH
+beH
+duv
+beH
+htI
+cCD
+shp
+oAB
+gyv
+beH
+duv
+beH
+beH
+bgO
+bqZ
+bqZ
+bdg
+buH
+hOR
+buH
+bdg
+wLV
+nza
+wLV
+wLV
+wLV
+ukA
+bqZ
+bdd
+gKB
+rsM
+oos
+gUf
+nsY
+mKJ
+deT
+uAC
+rhQ
+pyc
+uMn
+ivz
+nsY
+oed
+sIx
+oed
+oed
+yhQ
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(177,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+dxF
+dxF
+aaH
+aam
+aam
+aam
+aam
+aam
+aam
+aam
+lYA
+ahk
+aap
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aej
+aeP
+agI
+aia
+yaz
+bYe
+ajt
+avj
+vOy
+wWz
+vHO
+uXj
+uXj
+iwJ
+jVt
+uyH
+vHO
+iwJ
+uXj
+uXj
+rdt
+wTM
+vOy
+ayT
+aii
+avj
+ltK
+vGk
+vGk
+vGk
+qVM
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+qVM
+vGk
+lSD
+czu
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+nnD
+aZF
+aZF
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+ygK
+aLf
+aLf
+aLf
+aLf
+heK
+kam
+axc
+juD
+twW
+vHh
+pvh
+rgJ
+nsY
+hhw
+yfy
+ugV
+vUi
+bdd
+vTt
+kbV
+xzp
+vEn
+wmz
+wmz
+wmz
+bdg
+aLG
+aYO
+bad
+bdd
+bdd
+bDQ
+bgO
+vGG
+vGG
+bgO
+xRJ
+xRJ
+xRw
+bPO
+whA
+xAt
+xAt
+bgO
+gAj
+gAj
+bgO
+cab
+bdd
+bdd
+bGe
+bHL
+buH
+bdg
+wLV
+wLV
+wLV
+wLV
+gKH
+ldj
+cab
+bdd
+sOt
+cNX
+cdI
+sBL
+nsY
+eiN
+dVs
+tat
+kNC
+xuQ
+uPW
+kYv
+oDx
+tbK
+tbK
+tbK
+lNy
+oed
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(178,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+adj
+apk
+apk
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+abp
+ach
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aej
+aeQ
+agK
+agu
+eup
+bYe
+ajt
+avj
+vOy
+wWz
+uwZ
+wWm
+jQt
+nwi
+sNz
+uyH
+uwZ
+kGQ
+jQt
+coZ
+sNz
+wTM
+vOy
+ayT
+aii
+avj
+ltK
+wYj
+jhY
+fqx
+qVM
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+qVM
+azH
+fQK
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+asM
+asM
+mwR
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+jwD
+aLf
+uig
+hhw
+hhw
+nsY
+wpz
+oEX
+irT
+tyb
+xxm
+qSK
+ieu
+nsY
+sSe
+aLf
+qce
+aSm
+bdd
+bqZ
+xPR
+nIW
+wmz
+wmz
+wmz
+wmz
+bdg
+beB
+aYT
+beB
+beB
+bdd
+bqZ
+bgO
+vGG
+vGG
+bgO
+xRJ
+xRJ
+viO
+gMU
+ksN
+xAt
+xAt
+bgO
+gAj
+gAj
+bgO
+bqZ
+bdd
+bJz
+bJz
+bHT
+bJz
+bdg
+wLV
+wLV
+wLV
+wLV
+wLV
+wNT
+udV
+bdd
+pEl
+roU
+oos
+uVh
+nsY
+kzK
+lFh
+uzP
+pVA
+mzV
+pML
+ivz
+nsY
+jZO
+sIx
+oed
+wlp
+ndQ
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(179,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aaG
+aaG
+aaI
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+jUW
+tgS
+ady
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aej
+aeR
+agK
+agu
+aej
+pSL
+amT
+mIW
+vOy
+wWz
+pEJ
+xQm
+wLy
+eqD
+sNz
+uyH
+sWW
+mWW
+wLy
+xQm
+tfH
+wTM
+vOy
+aEK
+aSv
+ioX
+ltK
+nXF
+vGk
+bqG
+qVM
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+iBt
+qVM
+aCX
+tgS
+uSL
+asx
+asx
+asx
+asx
+asx
+asx
+asx
+aLX
+bbp
+bbp
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+cSK
+aSm
+aSm
+bUc
+nSN
+nsY
+xgS
+dbn
+qvC
+tyb
+uRM
+ipe
+ehR
+nsY
+aLf
+aLf
+tRc
+qEW
+bdd
+jlj
+mLb
+wmz
+vpt
+kQU
+wmz
+wmz
+bdg
+aLG
+aYO
+aLG
+aLG
+bdg
+bqZ
+qMR
+rwv
+rwv
+dRT
+dqD
+dqD
+bUb
+dRT
+eWp
+eWp
+eWp
+dRT
+tXb
+tXb
+fOk
+bqZ
+bdg
+buH
+buH
+bHL
+buH
+bdg
+gKH
+cgz
+vyU
+wLV
+wLV
+xDQ
+bXc
+bdd
+pcO
+tJV
+qoY
+uCh
+nsY
+tXT
+jJk
+wLG
+tyb
+sZH
+rjV
+ivz
+nsY
+fuY
+sZF
+vjD
+lFF
+ndM
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(180,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aaG
+aaG
+aaI
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+acg
+bAF
+ady
+aar
+aar
+aar
+ahi
+aar
+aar
+aar
+aar
+uux
+aar
+aar
+aej
+aej
+agO
+aid
+aej
+atL
+akV
+atL
+vOy
+wWz
+uwZ
+tyD
+jQt
+vfP
+sNz
+uyH
+uwZ
+tyD
+jQt
+vfP
+sNz
+wTM
+vOy
+atL
+akV
+atL
+qVM
+qVM
+nWc
+qVM
+qVM
+qVM
+qVM
+nNX
+qVM
+qVM
+qVM
+qVM
+ayo
+qVM
+qVM
+qVM
+aEJ
+bAF
+aKB
+asx
+asx
+asx
+asx
+asx
+asx
+asx
+aLX
+bbp
+bbp
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLf
+aLf
+xlD
+bUc
+vrB
+nsY
+nsY
+nsY
+nsY
+tIp
+nsY
+nsY
+nsY
+nsY
+hhw
+hhw
+hhw
+hhw
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+hDL
+aYO
+aNO
+aLG
+bdg
+bqZ
+beH
+vGG
+vGG
+beH
+xRJ
+xRJ
+xRJ
+beH
+xAt
+xAt
+xAt
+beH
+gAj
+gAj
+beH
+bqZ
+bdg
+buH
+bHa
+bHL
+bIR
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bdd
+bJt
+bJt
+bJt
+bJt
+nsY
+nsY
+nsY
+nsY
+goy
+nsY
+nsY
+nsY
+nsY
+gZG
+xMh
+ril
+kRu
+hXS
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(181,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+aaG
+aaG
+aaI
+abC
+abC
+abC
+aaJ
+abC
+abC
+abC
+act
+ajS
+afq
+lzW
+buk
+fgF
+bYP
+lBi
+acH
+cwd
+bYy
+tOd
+adT
+kqf
+aeU
+bUE
+bYe
+bYe
+aaO
+alp
+aio
+baB
+vOy
+wWz
+qxP
+gxP
+gxP
+jgg
+jZs
+uyH
+iRN
+jgg
+gxP
+gxP
+nMe
+wTM
+vOy
+alp
+aio
+baB
+aEV
+bUE
+bYe
+nBW
+bWP
+tSc
+spT
+fHC
+dHr
+bYQ
+cwd
+lBi
+qmt
+ayG
+saW
+tMf
+ajq
+ajS
+dGw
+asx
+asx
+asx
+aKJ
+asx
+asx
+asx
+aLX
+bbp
+bbp
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLf
+aSm
+hhw
+hhw
+hhw
+hhw
+hhw
+aLB
+acF
+heb
+cqa
+bBh
+aMV
+dRG
+aMV
+yiq
+kLp
+aMV
+bBh
+tCN
+lDJ
+tCN
+tCN
+yfw
+tCN
+bBh
+aLG
+aLG
+aYO
+aNO
+aLG
+bdg
+bqZ
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+bqZ
+bdg
+buH
+bHa
+bHL
+buH
+buH
+cbD
+iZH
+xkC
+njL
+njL
+njL
+njL
+cbD
+bUM
+bUM
+mYw
+iAT
+rdY
+bUM
+cbD
+rGg
+qtn
+kJV
+fiq
+fiq
+fiq
+fiq
+fiq
+fiq
+wlp
+sIx
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(182,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+lYA
+aey
+azY
+azY
+adi
+atC
+abx
+acC
+abx
+abx
+abx
+adi
+abx
+acC
+atC
+abg
+abg
+abg
+abg
+acC
+iWN
+amO
+dLE
+vOy
+woh
+vgO
+vgO
+vgO
+vgO
+vgO
+utX
+vgO
+vgO
+vgO
+vgO
+vgO
+xAe
+vOy
+aIS
+alq
+wWk
+chu
+aZE
+aZE
+aZE
+aZE
+xwG
+chu
+aZE
+cgI
+abt
+aZE
+aZE
+chu
+aZE
+xwG
+cgI
+agl
+agN
+ahH
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLa
+aSm
+hhw
+nHF
+nHF
+nHF
+cmE
+aLB
+nyG
+iDN
+tit
+nFV
+tBL
+tBL
+tBL
+tBL
+tBL
+tBL
+mRS
+tBL
+tBL
+tBL
+tBL
+tBL
+tBL
+luz
+tzf
+tBL
+fau
+aNO
+aLG
+bdg
+bqZ
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+bqZ
+bdg
+buH
+bHa
+wwu
+buI
+bFu
+cbE
+buI
+buI
+buI
+buI
+buI
+buI
+rpd
+buI
+buI
+buI
+buI
+buI
+buI
+rpd
+fkO
+bHY
+kro
+bGb
+uaa
+uaa
+uaa
+oFM
+fiq
+fYc
+uqH
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(183,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+bRK
+aao
+aiv
+aaW
+pjb
+abM
+iCe
+cLp
+cZZ
+ccY
+aJs
+cdu
+aaw
+abl
+jUs
+abu
+xaF
+aaL
+aJs
+bYe
+bYe
+aaE
+afD
+kaA
+anh
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+vOy
+xFw
+iTK
+anh
+aFF
+cjo
+bYe
+kSN
+aTQ
+uGo
+abl
+wba
+abu
+aaw
+wbj
+aJs
+cdu
+ayH
+uGo
+eoT
+aGR
+pjb
+aKC
+xCX
+vGk
+hoX
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLf
+aSm
+hhw
+nHF
+nHF
+nHF
+nHF
+aLB
+csl
+gjn
+jJs
+bBh
+aMM
+aMM
+aNG
+bga
+taA
+aSr
+bBh
+gyC
+wbh
+bsX
+bAa
+bKE
+eBj
+bBh
+aLG
+aNO
+aYT
+aNO
+bad
+bdd
+bDQ
+mng
+bCu
+bCu
+bCu
+bCu
+wCI
+moQ
+flW
+fvf
+rgW
+vUe
+vUe
+vUe
+vUe
+kuw
+cab
+bdd
+bGe
+bHa
+bHT
+bHa
+buH
+cbD
+bMt
+bMt
+bOv
+bOX
+jLK
+vUU
+cbD
+ciU
+rOj
+bUd
+bUF
+clR
+clR
+cbD
+dQs
+sFh
+guc
+bGb
+uaa
+uaa
+uaa
+uaa
+fiq
+wlp
+vfJ
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(184,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+bTI
+aap
+aar
+aar
+aar
+aar
+aar
+aar
+aar
+acG
+abg
+caF
+aar
+aar
+tiM
+aar
+aar
+ael
+ael
+agQ
+aih
+ael
+tnl
+amO
+anc
+atC
+apJ
+apJ
+aMl
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+aMl
+apJ
+apJ
+atC
+cnv
+amO
+lqJ
+qVM
+qVM
+xeG
+qVM
+qVM
+qVM
+xeG
+qVM
+qVM
+qVM
+acG
+abg
+caF
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+csz
+ofs
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aKW
+aLf
+aSm
+hhw
+nHF
+nHF
+nHF
+nHF
+jUx
+aLG
+qmL
+rZz
+jeb
+jeb
+jeb
+uIT
+lKb
+jeb
+jeb
+jeb
+jeb
+jeb
+uIT
+mWy
+jeb
+jeb
+jeb
+aLG
+aNO
+aYT
+aNO
+aLG
+bdg
+bqZ
+udi
+ddk
+dEQ
+hgg
+ddk
+cQc
+nlB
+ugu
+oQH
+wHo
+uWc
+wka
+tTp
+veu
+mDW
+bqZ
+bdg
+buH
+bHa
+bHT
+bHa
+buH
+vra
+vra
+vra
+mDT
+cgl
+vra
+vra
+vra
+vra
+vra
+mDT
+rJx
+vra
+vra
+vra
+jJe
+bHY
+buH
+vfo
+uaa
+uaa
+uaa
+uaa
+fiq
+scI
+gFG
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(185,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+qsd
+aao
+aao
+aar
+aIZ
+aIZ
+aIZ
+aLC
+aar
+bWs
+abg
+caF
+aar
+nuY
+sTB
+uaZ
+bUA
+ael
+afE
+agT
+agT
+ael
+cZm
+akU
+abg
+atC
+abg
+abx
+abx
+abx
+abg
+abx
+abx
+abx
+abg
+abx
+abx
+abx
+avD
+atC
+abg
+amO
+nQx
+qVM
+usi
+csz
+usi
+qVM
+xfh
+vGk
+vGk
+adI
+qVM
+acG
+abg
+caF
+qVM
+iBt
+iBt
+iBt
+fgo
+qVM
+aPX
+vGk
+vGk
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aac
+aaf
+aaf
+aaf
+aKW
+aSm
+aLf
+hhw
+nHF
+nHF
+nHF
+nHF
+aLB
+dEC
+aNO
+qHl
+jeb
+vlX
+aNx
+qGc
+jhD
+jeb
+osc
+cMV
+osc
+jeb
+aIq
+xHp
+hmF
+vlX
+jeb
+aNn
+aNO
+aYT
+aNO
+aLG
+bdg
+bqZ
+udi
+ddk
+hgg
+ddk
+dNM
+cQc
+nlB
+ugu
+oQH
+wHo
+uWc
+duw
+uWc
+fIZ
+mDW
+bqZ
+bdg
+buH
+bHa
+bHT
+bHa
+deH
+vra
+asX
+chf
+wDJ
+tJz
+vra
+ukV
+oNj
+ukV
+vra
+gll
+lpt
+mgF
+asX
+vra
+tfw
+bHY
+sVf
+bGb
+uaa
+uaa
+uaa
+uaa
+fiq
+scI
+scg
+yhQ
+aaf
+aaf
+aaf
+ajY
+bdH
+aaa
+aab
+aaa
+aaa
+"}
+(186,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+lYA
+aap
+aap
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+acO
+aJs
+cbN
+aar
+sTB
+aap
+aao
+vFb
+ael
+afH
+agV
+ain
+ael
+eGl
+aii
+anf
+atC
+apK
+anf
+apK
+arf
+auG
+azb
+azb
+azb
+auG
+aDp
+apK
+cbr
+apK
+atC
+cbr
+amO
+uGt
+qVM
+qVM
+vGk
+har
+qVM
+xHG
+csz
+vGk
+xHG
+qVM
+aJd
+aJs
+cbN
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+pzQ
+csz
+czu
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aKW
+vPr
+iiP
+hhw
+nHF
+nHF
+nHF
+nHF
+aLB
+udF
+aNO
+nLZ
+jeb
+obE
+tdE
+qGc
+rth
+rth
+oef
+oef
+oef
+nny
+rth
+xHp
+xwl
+rHf
+jeb
+jgU
+aNO
+aYT
+aNO
+aLG
+bdg
+bqZ
+ngI
+bDP
+bDP
+bDP
+bDP
+nBw
+moQ
+hGO
+fvf
+uNM
+xAt
+xAt
+xAt
+xAt
+nNH
+bqZ
+bdg
+buH
+bHa
+bHT
+bHa
+bKc
+vra
+bMq
+qUq
+wDJ
+nyQ
+nyQ
+xJH
+xJH
+xJH
+miV
+nyQ
+lpt
+qYQ
+ptj
+vra
+mEb
+bHY
+haT
+bGb
+uaa
+uaa
+uaa
+uaa
+fiq
+wlp
+sIx
+yhQ
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(187,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aao
+aao
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aba
+pNQ
+abx
+hTy
+aar
+teB
+aao
+aao
+wta
+ael
+afI
+agY
+oxi
+xfm
+als
+ani
+anc
+mOi
+mOi
+mOi
+mOi
+mOi
+mOi
+auc
+auc
+hyE
+aqU
+aHq
+aHq
+aHq
+aHq
+aHq
+iWN
+ajt
+kGI
+aPm
+qVM
+vGk
+csz
+xCX
+vGk
+vGk
+vGk
+csz
+qVM
+jSY
+abx
+hLO
+ceD
+iBt
+iBt
+iBt
+iBt
+qVM
+buD
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aKW
+aSm
+eIA
+hhw
+hhw
+hhw
+hhw
+hhw
+aLB
+dzF
+dzF
+dac
+jeb
+vlX
+thA
+gAA
+gAA
+bfn
+oMH
+coB
+rSj
+bfn
+gAA
+gAA
+fFD
+vlX
+jeb
+kEb
+aNO
+aYT
+aNO
+aLG
+bdg
+bqZ
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+beH
+bqZ
+bdg
+buH
+bHa
+bHT
+bHa
+rKy
+vra
+asX
+drj
+cgo
+cgo
+hyk
+qyW
+khd
+kaI
+hyk
+cgo
+cgo
+hQc
+asX
+vra
+cwQ
+vtB
+tQo
+bGb
+fiq
+fiq
+fiq
+fiq
+fiq
+wlp
+bxX
+yhQ
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(188,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aao
+aap
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+acP
+bUE
+qFQ
+aar
+aao
+aap
+aao
+sTB
+ael
+afJ
+agY
+aiq
+ajJ
+aEX
+ajt
+aow
+mOi
+rCw
+rCw
+lin
+oJR
+tFe
+asD
+xQV
+avK
+aqU
+aCZ
+dgg
+pud
+uPd
+aHq
+sDC
+ajt
+kGI
+ejp
+qVM
+vGk
+hoX
+qVM
+xHG
+csz
+vGk
+csz
+qVM
+sah
+bUE
+cbO
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+oLw
+vGk
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aKW
+uDB
+aLf
+hhw
+nHF
+nHF
+nHF
+cmE
+aLB
+enx
+aQt
+oQj
+jeb
+vlX
+tdE
+qGc
+rth
+rth
+hNM
+vxX
+uBO
+rth
+rth
+xHp
+xwl
+vlX
+jeb
+pGM
+aNO
+aYT
+aNO
+bad
+bdd
+bDQ
+lnm
+iLh
+iLh
+iLh
+iLh
+grR
+moQ
+ovp
+fvf
+rAb
+sCA
+sCA
+sCA
+sCA
+bVw
+cab
+bdd
+bGe
+bHa
+bHT
+bHa
+bIR
+vra
+asX
+qUq
+wDJ
+nyQ
+lrT
+bqW
+xaC
+qeY
+nyQ
+nyQ
+lpt
+qYQ
+asX
+vra
+ojR
+tki
+lQQ
+bGb
+uaa
+uaa
+uaa
+oFM
+fiq
+wlp
+sIx
+yhQ
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(189,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aap
+cWA
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+acG
+abx
+caF
+aar
+aap
+aap
+aao
+sTB
+ael
+afK
+ahc
+air
+ael
+isW
+ajt
+ali
+mOi
+wCT
+sIf
+isC
+isC
+tFe
+xQV
+xQV
+rNF
+aqU
+qjF
+oqv
+iqd
+rUy
+cnS
+iWN
+ajt
+nYv
+qVM
+qVM
+vGk
+pzQ
+qVM
+usi
+vzl
+vGk
+csz
+qVM
+acG
+abx
+caF
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+vGk
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aKW
+aSm
+aLf
+hhw
+nHF
+nHF
+nHF
+nHF
+aLB
+ewo
+aNO
+jLv
+jeb
+obE
+thA
+qGc
+rth
+rth
+rth
+aTW
+aTW
+rth
+rth
+xHp
+diJ
+rHf
+jeb
+aLG
+aNO
+aYT
+aNO
+aLG
+bCx
+bqZ
+cNf
+dll
+dll
+lRs
+dll
+rJu
+nlB
+ugu
+oQH
+mnI
+sJC
+vSK
+qnC
+nuK
+dVe
+bqZ
+bCx
+buH
+bHa
+rrV
+bHa
+buH
+vra
+bMq
+drj
+wDJ
+nyQ
+nyQ
+nyQ
+obQ
+obQ
+nyQ
+nyQ
+lpt
+eBV
+ptj
+vra
+fsH
+bHY
+pBn
+bGb
+uaa
+uaa
+uaa
+uaa
+fiq
+scI
+oed
+yhQ
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aap
+amN
+aar
+aar
+aar
+aar
+aar
+aar
+oPD
+abx
+lCz
+aar
+tAV
+sTB
+uvS
+wKn
+ael
+afL
+ahe
+aij
+ael
+abg
+akU
+abg
+mOi
+kbH
+kbH
+pgH
+jDV
+tFe
+xVc
+xQV
+eYz
+aqU
+gjB
+wDy
+aGN
+dxv
+cnS
+cnv
+ajt
+bYe
+xCX
+csz
+csz
+dWm
+qVM
+qVM
+qVM
+xeG
+qVM
+qVM
+oPD
+abx
+lCz
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+csz
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aSm
+aSm
+hhw
+nHF
+nHF
+nHF
+nHF
+cmC
+aLG
+aNO
+uBw
+jeb
+vlX
+tdE
+qGc
+rth
+rth
+tPI
+tPI
+iXT
+rth
+rth
+xHp
+xwl
+vlX
+jeb
+aLG
+aNO
+aYV
+bai
+bbg
+bCy
+bDS
+cNf
+dll
+qSE
+nff
+dll
+rJu
+nlB
+ugu
+oQH
+mnI
+nMp
+qnC
+qnC
+qnC
+dVe
+cac
+bCy
+bzK
+bHb
+bHV
+bHa
+rbX
+vra
+asX
+qUq
+wDJ
+nyQ
+nyQ
+pHA
+pHA
+nyQ
+nyQ
+nyQ
+lpt
+qYQ
+asX
+vra
+pJJ
+bHY
+buH
+cnd
+uaa
+uaa
+uaa
+uaa
+fiq
+suT
+oed
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(191,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+wFm
+abe
+aar
+aIZ
+aIZ
+aIZ
+aLC
+aar
+acG
+abx
+caF
+aar
+tiM
+aar
+aar
+aar
+adO
+adO
+adO
+adO
+adO
+lwm
+akU
+nQx
+mOi
+mOi
+mOi
+mOi
+mOi
+mOi
+asF
+asG
+iyH
+aqU
+jVE
+nTs
+pje
+pje
+cnT
+xvh
+fNC
+cKY
+qVM
+qVM
+qVM
+qVM
+qVM
+xfh
+xWF
+vGk
+yji
+qVM
+acG
+abx
+caF
+qVM
+iBt
+iBt
+iBt
+fgo
+qVM
+lJg
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+qxA
+aSm
+aSm
+aSm
+jiX
+aSm
+bPV
+hhw
+nHF
+nHF
+nHF
+nHF
+aLB
+fTU
+bbO
+cmg
+jeb
+jeb
+hfa
+jwK
+wnY
+cLC
+eGh
+rtA
+uKv
+nFK
+lEO
+xWd
+oSL
+jeb
+jeb
+aLG
+aNO
+aYW
+sLE
+bbh
+bdd
+bDT
+tHv
+xRJ
+xRJ
+xRJ
+xRJ
+tSB
+moQ
+caO
+fvf
+vrW
+iXb
+iXb
+iXb
+iXb
+pzV
+cad
+bdd
+oLT
+iEb
+bHW
+bHa
+buH
+vra
+vra
+eUh
+jTI
+lzq
+nyQ
+nhx
+eiq
+teu
+wXH
+xBQ
+mSU
+wVy
+vra
+vra
+cmd
+cmh
+wAR
+aLB
+uaa
+uaa
+uaa
+uaa
+fiq
+scI
+oed
+sow
+sIx
+leh
+vhI
+tVB
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(192,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aao
+ahk
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+acO
+aJs
+arJ
+aar
+aao
+aao
+uGz
+uGz
+adO
+afM
+fpR
+ahf
+adO
+wUz
+aii
+abg
+aqU
+sdl
+mLE
+bUx
+mLE
+tmK
+avK
+aug
+hKU
+aqU
+lyE
+rsO
+aGN
+rbB
+cnS
+cbr
+ajt
+anc
+aUH
+aXx
+jKI
+aXx
+qVM
+usi
+csz
+vGk
+csz
+qVM
+acO
+aJs
+arJ
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+hkx
+vGk
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+xxe
+aLf
+aLf
+aLf
+aLf
+xPE
+bPT
+hhw
+nHF
+nHF
+nHF
+nHF
+aLB
+ahj
+ahj
+ahj
+jeb
+tkN
+qHg
+gAA
+beP
+bfn
+pkz
+qfh
+ipE
+bfn
+moI
+gAA
+cGV
+tkN
+jeb
+aWM
+aNO
+aYX
+gjn
+bbi
+bdd
+bDU
+bqZ
+bqZ
+bqZ
+kFs
+bqZ
+bqZ
+bqZ
+kFs
+bqZ
+bqZ
+bqZ
+kFs
+bqZ
+bqZ
+bqZ
+cae
+bdd
+bGg
+bHd
+bHX
+bHa
+buH
+vra
+gNq
+hXb
+cgo
+fwY
+hyk
+nNV
+hyk
+mBc
+hyk
+fwY
+cgo
+skF
+gNq
+vra
+ajX
+ajX
+ajX
+aLB
+uaa
+uaa
+uaa
+uaa
+fiq
+wUS
+tbK
+sVi
+tbK
+tbK
+bfc
+oed
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(193,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aap
+eGF
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+bWh
+jSY
+abx
+hTy
+aar
+wFm
+tQE
+aao
+sTB
+adO
+afN
+ahh
+aiw
+ahG
+bYe
+ajt
+abg
+aqU
+xbN
+gfE
+gfE
+kpc
+aqU
+gjw
+cnp
+avM
+aqU
+wmK
+liJ
+pTj
+cnq
+cnS
+iWN
+aii
+abg
+aUH
+oyE
+mQC
+mQC
+qVM
+vGk
+csz
+vGk
+csz
+qVM
+jSY
+abx
+hLO
+cix
+iBt
+iBt
+iBt
+iBt
+qVM
+lSD
+vGk
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aSm
+aLf
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+wdb
+ahj
+ahj
+jeb
+aMx
+qHg
+qGc
+hxe
+aPf
+rth
+rth
+rth
+rth
+hxe
+xHp
+cGV
+nBa
+jeb
+beB
+beB
+aYW
+bzV
+cBA
+bdd
+beQ
+beQ
+beQ
+beQ
+bdd
+bdd
+hjk
+bOJ
+bdd
+hjk
+bOJ
+bdd
+bdd
+beQ
+beQ
+beQ
+beQ
+bdd
+bRQ
+cbS
+bHW
+bJz
+bJz
+vra
+bMu
+hXb
+wDJ
+ivs
+nyQ
+nyQ
+pHA
+nyQ
+nyQ
+ivs
+lpt
+skF
+pQF
+vra
+ajX
+ajX
+hBC
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+scI
+sIx
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(194,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+cIU
+aao
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+acP
+bUE
+qFQ
+aar
+aap
+aap
+aao
+fZF
+adO
+afO
+ahh
+aiw
+adO
+aEp
+xTt
+aEp
+lmK
+lmK
+lmK
+lmK
+lmK
+ntj
+ntj
+ntj
+ntj
+ntj
+aHq
+cnH
+kzk
+cnR
+aHq
+aEp
+xTt
+aEp
+aUH
+sIA
+gSj
+aXA
+qVM
+vGk
+csz
+vGk
+xHG
+qVM
+sah
+bUE
+cbO
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+toE
+ofs
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+bhC
+aSm
+aKW
+bbB
+bbB
+arn
+ajO
+ajO
+ajO
+clC
+ajO
+ajO
+cno
+ahj
+ahj
+ahj
+jeb
+iow
+aMO
+qGc
+hxe
+rth
+hXd
+guW
+aQM
+rth
+hxe
+xHp
+aUi
+iow
+jeb
+aLG
+aNO
+aYY
+bal
+bbj
+bCz
+bDV
+bDV
+bDV
+bDV
+bDV
+bNA
+bKA
+bdj
+oMe
+bdj
+bKA
+bNA
+bDV
+bDV
+bDV
+bDV
+bDV
+bCz
+buH
+iEb
+bHW
+bHa
+vMx
+vra
+wTw
+bNE
+wDJ
+ivs
+nyQ
+gZr
+vWB
+bSK
+nyQ
+ivs
+bUi
+bUT
+wTw
+vra
+ajX
+ajX
+ajX
+amS
+aoc
+aoc
+uQU
+aoc
+aoc
+aoc
+aAv
+eZi
+eZi
+yhQ
+wlp
+ftl
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(195,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aap
+aap
+aar
+aIZ
+aIZ
+aIZ
+aIZ
+aar
+aJa
+abg
+ccf
+aar
+tDA
+aao
+aap
+fZF
+adO
+jkj
+ahh
+aiw
+adO
+uLu
+anC
+aiC
+ioU
+nQh
+qPE
+xqD
+lPz
+iFp
+nHh
+iFp
+iFp
+aHq
+cnE
+liJ
+peT
+cbn
+aHq
+uLu
+aQo
+aTS
+aUd
+ckK
+iKM
+aHM
+qVM
+vGk
+csz
+yji
+uso
+qVM
+aJa
+abg
+ccf
+qVM
+iBt
+iBt
+iBt
+iBt
+qVM
+gKS
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aLf
+aLF
+aKW
+bbB
+bbB
+arn
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+cno
+ahj
+ahj
+ahj
+aLT
+aLT
+aLT
+aLT
+ozq
+ueZ
+aPK
+aLT
+aQN
+wsR
+dAq
+aQL
+aQL
+aQL
+aQL
+pGM
+aNO
+aYW
+sLE
+aLG
+bCA
+bCA
+bdj
+bCA
+bCA
+bdj
+bCA
+bCA
+bdj
+bCA
+bdj
+bCA
+bCA
+bdj
+bCA
+bCA
+bdj
+bCA
+bCA
+buH
+iEb
+bHW
+bHa
+bIR
+bJC
+bJC
+bJC
+bJC
+cib
+xvE
+bQZ
+bJC
+bSL
+moM
+rXS
+bSJ
+bSJ
+bSJ
+bSJ
+ajX
+ajX
+ajX
+amS
+aoc
+aoc
+aoc
+aoc
+aoc
+aoc
+aAv
+eZi
+eZi
+yhQ
+scI
+sIx
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(196,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aao
+aao
+aar
+aar
+aar
+aar
+aar
+aar
+eQi
+atL
+kOG
+aar
+aar
+aar
+tiM
+aar
+aar
+lFt
+ahh
+aiw
+adO
+aSz
+anG
+aiC
+ioU
+lzt
+wTd
+cmK
+lFm
+kXu
+kXu
+kXu
+kXu
+kXu
+jHC
+liJ
+qmP
+uoH
+aHq
+aiC
+anC
+aiC
+aUH
+dbv
+lII
+aWc
+qVM
+xeG
+qVM
+qVM
+qVM
+qVM
+eQi
+atL
+pef
+qVM
+qVM
+qVM
+qVM
+qVM
+qVM
+vGk
+vGk
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aLf
+bPS
+aKW
+bbB
+bbB
+arn
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+cno
+ahj
+ahj
+ahj
+aLT
+kaB
+vVb
+aLT
+aOy
+aOz
+mKb
+aLT
+vbM
+aRP
+aSH
+aQL
+mJP
+bSn
+aQL
+vHs
+ehH
+aYZ
+sLE
+bAV
+bCB
+bCB
+bCB
+bCB
+bCB
+bCB
+bCB
+bCB
+bri
+bdj
+bri
+bCB
+bCB
+bCB
+bCB
+bCB
+bCB
+bCB
+bCB
+cbv
+iEb
+bHY
+mru
+syP
+bJC
+jSp
+lAQ
+bJC
+bOZ
+bPa
+vhR
+bJC
+mWQ
+bTy
+bUf
+bSJ
+hII
+iJS
+bSJ
+ajX
+ajX
+ajX
+amS
+aoc
+aoc
+aoc
+aoc
+aoc
+aoc
+aAv
+eZi
+eZi
+yhQ
+oYb
+fxz
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(197,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+lYA
+aao
+aap
+gXh
+aao
+aap
+aap
+ahg
+aiv
+lMM
+abg
+lCS
+aiv
+ahg
+aap
+aap
+aao
+rfg
+aiw
+ahh
+aiw
+nph
+aiC
+ajF
+aiC
+ioU
+mSz
+nIG
+cSk
+ene
+aGN
+aGN
+suy
+uaV
+uaV
+nSS
+iKf
+aGN
+qrv
+aHq
+cgJ
+ajG
+aiC
+aGz
+ckd
+mQC
+aHM
+xCX
+vGk
+vGk
+aip
+vzl
+xCX
+bWC
+abg
+sSR
+xCX
+weU
+csz
+gYS
+vGk
+vGk
+csz
+csz
+czu
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+rJb
+yaG
+aKW
+bbC
+aan
+aan
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+hhw
+aLT
+sXt
+aMQ
+aNI
+bfy
+aMz
+sHY
+aLT
+msm
+aRT
+xMR
+aTw
+aUj
+kLk
+aQL
+mTn
+aiy
+aYZ
+sLE
+bbk
+bdk
+bdk
+bgR
+bwc
+eqP
+pUp
+bdk
+bdk
+brj
+bQQ
+fSl
+bdk
+bdk
+pUp
+eqP
+myJ
+eKI
+bdk
+bdk
+bGh
+iEb
+bHY
+njy
+hkE
+bJC
+ojF
+bNG
+bOx
+chR
+bJD
+mzg
+bJC
+ycZ
+bTA
+cIr
+gHo
+bUU
+uDW
+bSJ
+bSJ
+fiq
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+tGq
+tGq
+jjT
+yhQ
+trD
+sIx
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(198,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+abh
+aar
+aar
+tiM
+aar
+aar
+aar
+aar
+aar
+bWE
+aJs
+mXU
+aar
+aar
+aar
+aar
+aap
+aar
+afP
+ahh
+aiw
+nph
+aiC
+anG
+aiC
+ioU
+ioU
+ioU
+ioU
+nmV
+oeM
+oeM
+pUd
+oeM
+eed
+udZ
+aGN
+aGN
+pSU
+aHq
+czM
+ajG
+aiC
+aGz
+drk
+mQC
+mkG
+qVM
+oLw
+qVM
+qVM
+qVM
+qVM
+bWE
+aJs
+mXU
+qVM
+qVM
+qVM
+qVM
+qVM
+xeG
+qVM
+qVM
+uOi
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aLf
+aaz
+aKW
+bdY
+bdY
+bdY
+aaF
+aaF
+aaF
+aaF
+aaF
+aaF
+aaF
+aKW
+hhw
+aLT
+aLT
+aLT
+aLT
+aLT
+tNR
+aMP
+eAg
+aLT
+qoJ
+aRZ
+aSI
+aQL
+aQL
+aQL
+aQL
+aQL
+uQn
+aYZ
+sLE
+bbl
+bdl
+bdl
+bdl
+bdl
+bdl
+bdl
+bGo
+bGo
+bPB
+pCr
+bRR
+cpK
+cpK
+bdl
+bdl
+bdl
+bdl
+bdl
+bdl
+bGi
+iEb
+bHY
+oyy
+bJC
+bJC
+bJC
+bJC
+bJC
+mjS
+bNF
+szM
+bJC
+qrc
+bTE
+syH
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+fiq
+yhQ
+anm
+anm
+anm
+anm
+anm
+anm
+anm
+pfp
+pfp
+pfp
+yhQ
+scI
+oed
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(199,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+abh
+acx
+vuG
+aeC
+aeA
+aeA
+axw
+aeA
+bbe
+aeA
+aeC
+aeA
+bbe
+aeA
+aeA
+aar
+aap
+aar
+afQ
+aiw
+aiw
+nph
+aiC
+anG
+aiC
+ioU
+lPO
+vJg
+ioU
+vQf
+oeM
+oeM
+eed
+oeM
+eed
+vQq
+eEo
+aGN
+rub
+aHq
+cES
+ajG
+aiC
+aGz
+eqB
+obC
+hcf
+qVM
+lau
+qVM
+lJY
+lJY
+lFK
+lJY
+vcE
+lJY
+lFK
+lJY
+lMY
+lJY
+qvI
+lJY
+mCL
+rRq
+uOi
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aSm
+aLf
+aKW
+bdY
+bdY
+bdY
+aaF
+aaF
+aaF
+aaF
+aaF
+aaF
+aaF
+aKW
+hhw
+aLT
+bbY
+bdr
+bdz
+bdr
+bft
+bgU
+bhG
+aLT
+bjs
+blA
+bno
+bpC
+brn
+aRT
+buM
+aQL
+aLG
+aYZ
+sLE
+bbl
+bdl
+bEr
+bEs
+bIs
+bdm
+rbY
+gwD
+bOK
+bPD
+bYa
+bPD
+jOk
+bNB
+mCo
+xGo
+bYu
+nmK
+caf
+bdl
+bGj
+iEb
+bHY
+buH
+bJC
+cdT
+cfo
+cgq
+cfo
+chM
+cjd
+cjA
+bJC
+ckr
+ckQ
+clh
+clg
+clI
+clg
+clW
+bSJ
+fiq
+yhQ
+anm
+anm
+anm
+anm
+anm
+anm
+anm
+pfp
+pfp
+pfp
+yhQ
+wlp
+oed
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(200,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+abi
+acz
+aeA
+aje
+amF
+asA
+ayb
+amF
+amF
+amF
+ayb
+asA
+amF
+kmE
+aeA
+aar
+awJ
+aar
+ahJ
+ahJ
+ahJ
+adO
+aiC
+ajF
+aiC
+ioU
+dnS
+viN
+bAu
+nVB
+eHY
+oeM
+eed
+oeM
+eed
+hpz
+aRi
+aGN
+qrv
+aHq
+aOS
+ajG
+aiC
+aUH
+aGz
+aGz
+aGz
+qVM
+hoX
+qVM
+lJY
+qbx
+dcp
+yeH
+sSl
+dcp
+dcp
+dcp
+sSl
+yeH
+dcp
+nja
+lJY
+xxZ
+uyC
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+bhC
+aSm
+aKW
+bdY
+bdY
+bdY
+aaF
+aaF
+aaF
+aaF
+aaF
+aaF
+aaF
+aKW
+hhw
+aLT
+bca
+aMC
+aLT
+avv
+bfu
+rGj
+aQT
+aLT
+aTv
+blB
+bnp
+aTx
+aQL
+aUY
+buN
+aQL
+aLG
+aYZ
+sLE
+bbl
+bdl
+bDX
+bCA
+bCA
+bdj
+rbY
+bEc
+bKA
+bCA
+bQS
+bCA
+bKA
+bEc
+mCo
+tjl
+rIH
+tUh
+cag
+bdl
+bGk
+iEb
+bHY
+buH
+bJC
+cdU
+bMy
+bJC
+cog
+chN
+mzg
+cdP
+bJC
+dpO
+ckX
+cli
+coj
+bSJ
+bVo
+clX
+bSJ
+fiq
+yhQ
+anm
+anm
+anm
+anm
+anm
+anm
+anm
+pfp
+pfp
+pfp
+yhQ
+scI
+uqH
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(201,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+abi
+acA
+aeA
+ajk
+aeA
+aeC
+aeC
+aeC
+aeC
+aeC
+aeC
+aeC
+vOh
+gUX
+ily
+aar
+tiM
+aar
+aWd
+aWd
+aWd
+pji
+aiC
+ajF
+aiC
+ioU
+pPM
+qKz
+ioU
+mGu
+fXx
+fXx
+kXf
+huO
+iLO
+mtN
+xNv
+iLO
+bUa
+aHq
+aSz
+anC
+aiC
+pji
+aWd
+aWd
+aWd
+qVM
+xeG
+qVM
+cBb
+xVS
+lJY
+vcE
+vcE
+vcE
+vcE
+vcE
+vcE
+vcE
+eKH
+lVo
+lJY
+kAm
+uyC
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aSm
+aLf
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+hhw
+aLT
+aLT
+aLT
+aLT
+aLT
+bfx
+rGj
+aQT
+aLT
+aTv
+blB
+kiU
+aQL
+aQL
+aQL
+aQL
+aQL
+pGM
+aYZ
+sLE
+bbm
+bdl
+bDY
+bCA
+bCA
+nLt
+gmb
+bNQ
+bNQ
+bNQ
+bNQ
+bNQ
+bNQ
+bNQ
+nXU
+bKA
+jac
+bCA
+cah
+bdl
+bGl
+iEb
+bHY
+bIR
+bJC
+bJC
+bJC
+bJC
+bJC
+chO
+mzg
+cdP
+bJC
+dpO
+ckX
+clj
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+fiq
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+wlp
+sIx
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(202,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+abh
+acx
+ahz
+ajs
+aeC
+aeC
+ayc
+aOE
+aOE
+aOE
+ciu
+aeC
+aeC
+ajs
+aeC
+aGD
+aWd
+eTO
+anR
+anR
+lNl
+aFW
+aSy
+anH
+aoB
+alL
+alL
+alL
+jvY
+jvY
+jvY
+jvY
+jvY
+jvY
+jvY
+jvY
+jvY
+alL
+alL
+alL
+aSy
+aoS
+dZd
+aFW
+aIe
+anR
+anR
+uWC
+aHQ
+apj
+vcE
+kUV
+vcE
+vcE
+eCo
+iry
+iry
+iry
+sYw
+vcE
+vcE
+kUV
+cil
+rRq
+uOi
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aSm
+aLf
+aLf
+ycV
+aLf
+aSm
+bbx
+izU
+gFs
+yaG
+bPV
+aaz
+bPT
+eko
+bPV
+aLT
+bco
+aMB
+bdA
+aLT
+ial
+rGj
+aPl
+aLT
+aPn
+aRU
+bnr
+aQL
+brr
+aUZ
+buO
+aQL
+aLG
+aYZ
+sLE
+jJs
+bdl
+bDZ
+bdj
+bri
+bLX
+bdl
+cEB
+bNP
+bmD
+bNP
+bmD
+bNP
+bmD
+mYv
+doP
+jac
+isS
+cai
+bdl
+bII
+iEb
+bHY
+buH
+bJC
+cdV
+bMx
+cgr
+bJC
+raK
+mzg
+bgW
+bJC
+ckR
+ckX
+iyS
+bSJ
+clJ
+bVn
+clY
+bSJ
+fiq
+iFm
+anb
+anb
+anb
+kKX
+uvs
+ixP
+fiq
+kUt
+hGZ
+tbK
+tbK
+sQU
+ebY
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(203,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aae
+aah
+aah
+aah
+aah
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+abh
+acx
+aeC
+ajs
+aeC
+wXh
+ayn
+atr
+aeA
+aex
+ciw
+wXh
+aeC
+ydz
+ayb
+aGC
+tSw
+agJ
+aXE
+aXE
+agJ
+aFV
+hPK
+aXE
+akH
+jvY
+jvY
+jvY
+jvY
+apW
+aqV
+asH
+aui
+avN
+aqV
+axV
+jvY
+jvY
+jvY
+jvY
+aSB
+iWd
+elA
+aFV
+aGC
+aXE
+aXE
+aGC
+rph
+agJ
+sSl
+kkx
+vcE
+kpo
+iMx
+tGi
+lJY
+bXe
+eyG
+kpo
+vcE
+kUV
+vcE
+rRq
+uOi
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aah
+aah
+aah
+aah
+afm
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aLF
+bbx
+bPS
+ktP
+aSm
+aLf
+aSm
+ecM
+enf
+ecM
+aSm
+aLf
+bbx
+eko
+lLV
+aLT
+bco
+bdr
+bdA
+aLT
+bfw
+rGj
+aQT
+aLT
+aTv
+blB
+vJV
+aQL
+brr
+aRT
+buO
+aQL
+aLG
+aYZ
+sLE
+bkY
+bdl
+lOr
+lOr
+iwI
+lOr
+bdl
+bEt
+bNP
+bmD
+bNP
+bmD
+bNP
+byu
+obo
+tiE
+bYv
+tiE
+tiE
+bdl
+rqw
+iEb
+bHY
+buH
+bJC
+cdV
+cfo
+cgr
+bJC
+chQ
+mzg
+cdP
+bJC
+dpO
+ckX
+clk
+bSJ
+clJ
+clg
+clY
+bSJ
+fiq
+wUS
+tbK
+tbK
+bfc
+ant
+glM
+mUn
+fiq
+suT
+oed
+oed
+oed
+uim
+qNy
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(204,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aae
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+abi
+acE
+aeA
+ajk
+aeA
+asY
+ayQ
+atr
+bbX
+atr
+ciD
+ngl
+aeA
+ajk
+aeA
+aIe
+aWd
+kYP
+aHQ
+aHQ
+apj
+aFW
+rFY
+aVY
+akI
+jvY
+arg
+atf
+jvY
+apX
+aqb
+asI
+aqb
+avO
+aqb
+axW
+jvY
+aMm
+aOq
+jvY
+aDx
+dsk
+mLU
+aFW
+aGD
+aHQ
+aHQ
+lKk
+kKb
+lNl
+lJY
+xVS
+lJY
+ttS
+wEO
+faO
+haM
+bXe
+deg
+wLu
+lJY
+xVS
+lJY
+uGa
+uyC
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+afm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aKW
+aKW
+aKW
+aKW
+aKW
+uDB
+aLf
+aSm
+uGw
+uJl
+ihn
+aSm
+aLf
+aSm
+aSm
+eko
+aLT
+bcZ
+bdr
+bdC
+beR
+bfy
+rGj
+aQT
+aLT
+aTv
+blB
+bnt
+bpG
+brs
+aRT
+bew
+aQL
+beB
+aYW
+bzV
+beB
+mCo
+xfw
+lBF
+bKA
+sbM
+pWA
+pXV
+bNP
+bmD
+bNP
+bmD
+bNP
+bmD
+lyk
+bOR
+eHa
+opj
+xAB
+mCo
+bJz
+cbS
+bHW
+bJz
+bJC
+bKX
+cfo
+cgs
+chk
+chR
+mzg
+cdP
+bJC
+dpO
+ckX
+cll
+clE
+clK
+clg
+bVy
+bSJ
+fiq
+fiq
+fiq
+fiq
+lra
+ujA
+fiq
+fiq
+fiq
+jbb
+uNW
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+aaa
+aab
+aaa
+aaa
+"}
+(205,1,1) = {"
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+abi
+acT
+aeA
+ajk
+aeA
+atp
+ayR
+atr
+eGb
+atr
+cji
+nqV
+aeA
+ajk
+ily
+psm
+jFX
+psm
+blb
+aWd
+aXT
+pji
+aEp
+aEp
+akJ
+jvY
+arh
+atm
+jvY
+apY
+aqb
+asJ
+aqb
+avP
+aqb
+axX
+jvY
+nSG
+aOs
+jvY
+aEp
+ixC
+aEp
+pji
+jFg
+aWd
+pCD
+vuv
+orm
+vuv
+cBb
+xVS
+lJY
+hlX
+umh
+bXe
+lxT
+tGi
+pfH
+wlF
+lJY
+xVS
+lJY
+mIA
+uyC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aKW
+uAs
+aLf
+aSm
+kOf
+oIn
+kOf
+aSm
+aLf
+aSm
+aSm
+aLf
+aLT
+bco
+bdr
+bdA
+aLT
+bfD
+aPj
+aPl
+aLT
+aPn
+blB
+sNb
+aQL
+brr
+aRT
+buO
+aQL
+aXS
+aYZ
+kfP
+tBF
+bmv
+bEg
+bGU
+bGU
+bKz
+snw
+qsC
+bNL
+bNL
+bNL
+bNL
+bNL
+bNL
+bWL
+bXH
+bYw
+nDM
+bWL
+sSa
+qLp
+lYi
+bIb
+mHm
+bJC
+cdV
+cfo
+cgr
+bJC
+foL
+mzg
+bgW
+bJC
+ckR
+ckX
+loS
+bSJ
+clJ
+clg
+clY
+bSJ
+iGK
+tbK
+tbK
+tbK
+sQU
+wUS
+hGZ
+tbK
+tbK
+sQU
+sIx
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(206,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+abh
+acx
+umR
+ajs
+aeC
+wXh
+ayn
+atr
+aeA
+bXz
+ciw
+wXh
+aeC
+ajs
+qon
+psm
+tNT
+aep
+ggQ
+ggQ
+aME
+aep
+aiB
+ajN
+akK
+jvY
+ari
+aoP
+jvY
+apZ
+aqb
+asK
+aqb
+avQ
+aqb
+aqa
+axo
+atm
+aOr
+jvY
+aiB
+aWf
+aiB
+aep
+aME
+ggQ
+aME
+aep
+vSg
+vuv
+dHe
+kUV
+vcE
+kpo
+iMx
+bXe
+lJY
+mzF
+eyG
+kpo
+vcE
+kUV
+pPF
+rRq
+uOi
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aKW
+bPU
+bPS
+bbx
+moh
+iIY
+bPW
+xlD
+aLf
+aSm
+aSm
+aLf
+aLT
+bco
+aMC
+bdA
+aLT
+bfx
+bgY
+aQT
+aLT
+aTv
+blB
+nCp
+aQL
+brr
+aUY
+buO
+aQL
+aLG
+aYZ
+sLE
+jJs
+mCo
+bEh
+bNQ
+bNQ
+bNQ
+pjG
+boy
+bpQ
+bpQ
+bsJ
+bpQ
+bpQ
+bxf
+bZr
+bKA
+bKA
+cXR
+cal
+mCo
+pJJ
+iEb
+bHY
+buH
+bJC
+cdV
+bMy
+cgr
+bJC
+chP
+mzg
+cdP
+bJC
+dpO
+ckX
+cln
+bSJ
+clJ
+bVo
+clY
+bSJ
+pNG
+oed
+oed
+oed
+oed
+sIx
+mOU
+sIx
+oed
+oed
+uFt
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(207,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+abh
+acx
+aeB
+ajs
+aeC
+aeC
+azk
+aOU
+biL
+biL
+cmF
+aeC
+aeC
+ajs
+aeC
+psm
+xlX
+aep
+afj
+afk
+agM
+aep
+alG
+aYj
+aoD
+jvY
+arj
+atm
+jvY
+xRH
+aqb
+aqb
+aqb
+aqb
+aqb
+aqb
+bzD
+atm
+aOs
+jvY
+alG
+anG
+apd
+aep
+aHS
+afk
+sHo
+aep
+sFR
+vuv
+vcE
+kUV
+vcE
+vcE
+shs
+kAU
+kAU
+kAU
+aYE
+vcE
+vcE
+kUV
+riP
+rRq
+uOi
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+aKW
+ycV
+ktP
+aLT
+aLT
+aLT
+aLT
+aLT
+hQW
+bgY
+aQT
+aLT
+aTv
+blB
+qhU
+aQL
+aQL
+aQL
+aQL
+aQL
+aLG
+aYZ
+sLE
+qFb
+bdl
+bEi
+bZr
+bmD
+ngw
+pjG
+boz
+bpR
+bpR
+bpR
+bpR
+bpR
+bxg
+bZr
+bKA
+bKA
+cir
+bdl
+bdl
+lgX
+iEb
+bHY
+buH
+bJC
+bJC
+bJC
+bJC
+bJC
+uUo
+mzg
+cdP
+bJC
+dpO
+ckX
+sUO
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+scI
+oed
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+yhQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(208,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+abi
+acX
+aeA
+aju
+amH
+aeC
+aeC
+aeC
+aeC
+aeC
+aeC
+aeC
+aeA
+ajk
+aeA
+psm
+xlX
+aep
+afk
+afk
+afk
+aep
+alG
+aYj
+aoD
+jvY
+ark
+atm
+jvY
+bhf
+aqb
+asL
+aqb
+avR
+aqb
+kTv
+axo
+atm
+thv
+jvY
+alG
+anG
+apd
+aep
+afk
+aHl
+afk
+aep
+kMq
+vuv
+lJY
+itR
+kKR
+vcE
+vcE
+vcE
+vcE
+vcE
+vcE
+vcE
+lJY
+xVS
+lJY
+hki
+uyC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+eFH
+hlz
+aLT
+bcE
+aMB
+bdD
+aLT
+bfz
+bgY
+aPl
+aLT
+aPn
+blB
+bnu
+aQL
+brt
+aUZ
+buS
+aQL
+aLG
+aYZ
+sLE
+jJs
+bdl
+brp
+bZr
+bmD
+xId
+pjG
+boz
+bpR
+bpR
+bpR
+bpR
+bpR
+bxg
+bZr
+bNQ
+bNQ
+bNQ
+utx
+hMs
+cbw
+iEb
+bHY
+buH
+bJC
+cdX
+bMx
+cgt
+bJC
+chS
+bQA
+bgW
+bJC
+ckR
+ckX
+meu
+bSJ
+clL
+bVn
+clZ
+bSJ
+dGz
+cAH
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(209,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+abi
+acY
+aeA
+ajv
+amF
+asA
+ayb
+amF
+amF
+amF
+ayb
+asA
+amF
+ohL
+aeA
+psm
+qWT
+aep
+aep
+aep
+aep
+aep
+alJ
+aYj
+aoD
+jvY
+alL
+atk
+jvY
+jvY
+axo
+axo
+axo
+axo
+axo
+jvY
+jvY
+aAy
+alL
+jvY
+alG
+anG
+apd
+aep
+aep
+aep
+aep
+aep
+cBi
+vuv
+lJY
+ucw
+dcp
+yeH
+sSl
+dcp
+dcp
+dcp
+sSl
+yeH
+dcp
+lMp
+lJY
+jbt
+uyC
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+iDm
+hlz
+aLT
+bcE
+bdr
+bdD
+aLT
+rrq
+bgY
+aQT
+aLT
+aTv
+blB
+mtr
+aQL
+brt
+bpC
+buS
+aQL
+aNn
+aYZ
+sLE
+jJs
+bdl
+bEl
+wup
+bmD
+hBz
+pjG
+boA
+bpR
+bpR
+bsK
+bpR
+bpR
+bxh
+bZr
+krN
+krN
+krN
+pFQ
+can
+buH
+iEb
+bHY
+buH
+bJC
+cdX
+cfo
+cgt
+bJC
+chQ
+cjf
+cdP
+bJC
+dpO
+ckX
+xoe
+bSJ
+clL
+clg
+clZ
+bSJ
+xRE
+ebO
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(210,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+abh
+acx
+aeA
+aeA
+aeA
+aeA
+aeC
+aeA
+aeA
+aeA
+aeC
+ntI
+aeA
+aeC
+puO
+psm
+xlX
+egS
+aep
+aep
+aep
+aep
+alG
+aYj
+aoD
+jvY
+arl
+atm
+alL
+awv
+axu
+azc
+aAZ
+aDa
+aFh
+aHr
+alL
+aMo
+aOt
+jvY
+alG
+anG
+apf
+oIB
+oIB
+oIB
+oIB
+oIB
+sFR
+vuv
+lJY
+uxC
+lJY
+lJY
+fFe
+lJY
+lJY
+lJY
+vcE
+lJY
+lJY
+lJY
+lJY
+rRq
+uOi
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+eFH
+hlz
+aLT
+abS
+bdr
+bdC
+beS
+bfy
+bgY
+aQT
+aLT
+aTv
+blB
+bnt
+bpH
+brs
+bpC
+abT
+aQL
+beB
+aYW
+bzV
+beB
+bdl
+buz
+bZr
+bmD
+dmE
+pjG
+boz
+bpR
+bpR
+bpR
+bpR
+bpR
+bxg
+bZr
+ibc
+uly
+bNN
+dvD
+pky
+cbv
+cbS
+bHW
+bJz
+bJC
+ack
+cfo
+cgs
+chl
+chR
+cjf
+cdP
+bJC
+dpO
+ckX
+cll
+clF
+clK
+clg
+acp
+bSJ
+vMn
+vuR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(211,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abh
+abh
+abh
+abh
+aeC
+atr
+aeC
+atr
+aeC
+psm
+psm
+psm
+psm
+jFX
+psm
+psm
+xlX
+aeq
+psm
+psm
+psm
+psm
+alG
+aYj
+aoD
+jvY
+abF
+atm
+auH
+atm
+atm
+atm
+aBb
+aFi
+aFi
+aHs
+aIT
+atm
+aVF
+jvY
+alG
+aYD
+uPI
+oIB
+fXE
+kaS
+aiQ
+oIB
+sFR
+vuv
+vuv
+vuv
+vuv
+sdw
+vuv
+vuv
+vcE
+bXe
+vcE
+bXe
+vcE
+uOi
+uOi
+uOi
+uOi
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+hlz
+eFH
+aLT
+bcE
+aMC
+bdD
+aLT
+bfC
+bgY
+aPl
+aLT
+aPn
+aRX
+cSQ
+aQL
+brt
+aUY
+buS
+aQL
+aLG
+aYZ
+sLE
+uBw
+bdl
+bEm
+bZr
+bmD
+hAc
+pjG
+boz
+bpR
+bpR
+bpR
+bpR
+bpR
+bxg
+bZr
+xBV
+uys
+uys
+uys
+uys
+iRr
+iEb
+bHY
+buH
+bJC
+cdX
+bMy
+cgt
+bJC
+chV
+cjf
+bgW
+bJC
+ckR
+bTC
+mvl
+bSJ
+clL
+bVo
+clZ
+bSJ
+bob
+emG
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(212,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+abh
+aeC
+atr
+aeC
+atr
+aeC
+psm
+cnU
+nGc
+psm
+cWI
+psm
+whc
+xlX
+qWT
+psm
+qWT
+qWT
+psm
+alK
+ajP
+aoD
+jvY
+jvY
+jvY
+jvY
+awx
+awx
+azd
+aBc
+aDb
+awx
+awx
+jvY
+jvY
+jvY
+jvY
+sUF
+anG
+apd
+oIB
+jxC
+hzb
+xUV
+oIB
+sFR
+hPo
+vuv
+dnk
+rCp
+fbx
+cEO
+vuv
+vcE
+bXe
+vcE
+bXe
+vcE
+uOi
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+qnP
+jPf
+aLT
+aLT
+aLT
+aLT
+aLT
+bfx
+bgY
+aQT
+aLT
+aTv
+blB
+sNb
+aQL
+aQL
+aQL
+aQL
+aQL
+bxx
+byF
+bzW
+bxx
+bdl
+bpT
+bNN
+bNN
+bNN
+bmB
+boB
+bpS
+bpS
+bsL
+bpS
+bpS
+bxi
+bZr
+bKA
+dyx
+eYr
+bUo
+uys
+cbz
+cbU
+ccu
+cbz
+bJC
+bJC
+bJC
+bJC
+bJC
+chW
+rvT
+cdP
+bJC
+dpO
+ckX
+hAZ
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+cJP
+vuR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(213,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+abh
+aeC
+atu
+azU
+aeC
+ldl
+psm
+xlX
+nYh
+psm
+xuI
+psm
+miK
+tXW
+gfk
+fBf
+tXW
+tXW
+fBf
+aTS
+ajP
+aoD
+alL
+urM
+dBG
+jvY
+jvY
+jvY
+jvY
+aBf
+jvY
+jvY
+jvY
+jvY
+wjv
+fDG
+alL
+alG
+aYD
+aTS
+qgK
+tEB
+uBM
+dXo
+oIB
+lBR
+nVu
+vuv
+jvI
+cxo
+fbx
+jnk
+vuv
+vcE
+pxJ
+swM
+vcE
+fFe
+uOi
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+hlz
+moE
+aLT
+bdJ
+bds
+aLT
+bpL
+bfE
+njd
+aQT
+aLT
+aTv
+blB
+uvu
+aUZ
+aQL
+bsS
+mqK
+aQL
+aLG
+aYZ
+sLE
+jJs
+bdl
+bEp
+bCA
+bCA
+cvb
+bmC
+nwG
+lDL
+nwG
+lMw
+jeO
+nQv
+ltb
+bmD
+bKA
+dyx
+hGN
+pVx
+uys
+ttM
+iEb
+ccv
+bIS
+bJC
+cfp
+cgu
+bJC
+bMx
+chQ
+cjf
+cdP
+bJC
+dpO
+ckX
+clo
+bVn
+bSJ
+clM
+clS
+bSJ
+nOG
+vuR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(214,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+pVZ
+psm
+psm
+psm
+jFX
+psm
+psm
+sAA
+nYh
+psm
+ano
+psm
+qhB
+xlX
+wCh
+psm
+qWT
+qWT
+psm
+uBz
+aYj
+aoE
+aqe
+amw
+anO
+arq
+arq
+arq
+aze
+xYZ
+aDe
+arq
+arq
+arq
+anO
+qaV
+kwd
+aSB
+anG
+mPX
+oIB
+wKF
+bZw
+ltU
+oIB
+fbx
+cFA
+vuv
+joT
+cxo
+fbx
+hlI
+vuv
+vuv
+vuv
+vuv
+sdw
+vuv
+qMu
+aag
+aag
+afm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+hlz
+eFH
+aLT
+beT
+bdr
+bkg
+aMz
+bfy
+bgY
+aPl
+aLT
+aPn
+blB
+bnt
+aRT
+ihY
+bpC
+dnE
+aQL
+kgr
+aYW
+bzV
+beB
+bdl
+ycp
+ycp
+tPj
+mnf
+ycp
+bdl
+bdl
+rtj
+agv
+bdl
+bdl
+bdl
+kFO
+kFO
+uys
+uys
+uys
+uys
+bJz
+cbS
+bJz
+bHW
+bJC
+bMA
+cfo
+chm
+bJD
+chR
+cjf
+bgW
+bJC
+ckR
+ckX
+cll
+bTA
+clG
+clg
+bVq
+bSJ
+njT
+ydx
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(215,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+pVZ
+amJ
+jXY
+psm
+ano
+bjI
+psm
+cnY
+nYh
+psm
+cWI
+psm
+adp
+xlX
+aeq
+psm
+qWT
+aeq
+psm
+jMK
+ajR
+aoG
+aqg
+arr
+atn
+atn
+atn
+atn
+anP
+aBh
+anP
+atn
+atn
+atn
+atn
+aOB
+aRj
+aSC
+aZH
+iAB
+oIB
+phj
+vEf
+pxj
+oIB
+fbx
+cxo
+iEs
+fbx
+fbx
+fbx
+cxo
+cxo
+iwh
+cxo
+cxo
+fbx
+cxo
+qMu
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+tAi
+eFH
+aLT
+aLT
+aLT
+aLT
+brv
+nuA
+bgY
+aQT
+aLT
+aTv
+blB
+oiQ
+lml
+aQL
+aQL
+aQL
+aQL
+pGM
+aYZ
+sLE
+jJs
+bdl
+fKT
+bGy
+bKA
+snM
+iqo
+moY
+clV
+crD
+kLP
+gvU
+cyo
+bdl
+hTP
+tXj
+sgc
+xCa
+bUy
+bdl
+qYt
+iEb
+bHa
+bIT
+bJC
+bJC
+bJC
+bJC
+cdf
+jxx
+cjf
+cdP
+bJC
+dpO
+ckX
+rXj
+gfo
+bSJ
+bSJ
+bSJ
+bSJ
+nOG
+cAH
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(216,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+pVZ
+amL
+atz
+psm
+ouo
+bjI
+psm
+jFX
+psm
+psm
+xuI
+psm
+qWT
+xlX
+qWT
+psm
+cBB
+irn
+psm
+rFY
+ctC
+aoQ
+kwd
+amA
+atq
+atq
+amx
+amx
+amx
+atq
+amx
+amx
+amx
+atq
+atq
+aoT
+kwd
+rFY
+ctC
+gPF
+oIB
+oIB
+oIB
+oIB
+oIB
+fbx
+gHg
+vuv
+iTf
+cxo
+suk
+chC
+pTT
+oLd
+oLd
+oLd
+oyw
+cxo
+qMu
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+hlz
+eFH
+aLT
+beT
+bdr
+bpK
+aMz
+bfy
+bgY
+aQT
+aLT
+aTv
+blB
+bnt
+aRT
+mUx
+bpC
+dnE
+aQL
+aLG
+aYZ
+sLE
+jJs
+bdl
+fgm
+bdj
+rHN
+kuu
+mDj
+bdl
+jre
+dXG
+nqx
+hzg
+vBU
+fIX
+fnI
+ipa
+fYZ
+vYC
+noj
+hpS
+pJJ
+iEb
+bHa
+bIT
+bJC
+bMA
+cfo
+chn
+bJD
+chR
+cjf
+cdP
+bJC
+dpO
+ckX
+cll
+bTA
+clH
+oFV
+bVq
+bSJ
+fTx
+lGr
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(217,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+pVZ
+jXY
+coG
+hSu
+xlX
+qWT
+aDg
+qWT
+tLM
+xlX
+xlX
+hSu
+xlX
+xlX
+qWT
+psm
+psm
+psm
+psm
+aEp
+lIw
+aoR
+alO
+ars
+amx
+amx
+aqf
+amx
+amx
+atq
+amx
+amx
+amx
+amx
+amx
+aOC
+alO
+aEp
+lIw
+aEp
+loP
+loP
+loP
+loP
+loP
+qej
+loP
+loP
+vuv
+hlI
+fbx
+xxJ
+ybO
+yal
+tpK
+qKF
+kaN
+gHg
+qMu
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+eFH
+hlz
+aLT
+beU
+bdv
+aLT
+bry
+bfu
+bgY
+jVr
+aLT
+kXa
+blB
+chL
+lAl
+aQL
+bsW
+xvX
+aQL
+aLG
+txe
+baq
+jJs
+bdl
+ntd
+iVj
+eqb
+mLR
+hdE
+bdl
+krZ
+ixQ
+kWk
+xyY
+nwY
+bKA
+fnI
+cwo
+scH
+nzO
+kxL
+hpS
+pJJ
+vzu
+vYi
+bIT
+bJC
+cfq
+cgv
+bJC
+wqc
+chN
+cjf
+lok
+bJC
+ihM
+ckX
+clm
+hXY
+bSJ
+clN
+clT
+bSJ
+cJP
+vuR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(218,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+pVZ
+amP
+atD
+psm
+xlX
+aDz
+aRV
+cyE
+xlX
+qWT
+uRQ
+psm
+qWT
+xlX
+qWT
+psm
+ahn
+aiz
+psm
+ndJ
+anJ
+aoS
+inw
+amA
+amx
+amx
+awy
+amx
+amx
+amx
+amx
+amx
+amx
+atq
+amx
+aoT
+inw
+aiB
+anJ
+mnG
+loP
+iwB
+tOC
+mHo
+vqL
+xBY
+qwo
+loP
+xgL
+nho
+fbx
+xxJ
+hlI
+eRe
+eRe
+eRe
+kaN
+cxo
+qMu
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+iDm
+hlz
+aLT
+aLT
+aLT
+aLT
+bwe
+cuY
+aPo
+aLT
+aLT
+aQL
+aSa
+bnA
+xhQ
+aQL
+aQL
+aQL
+aQL
+aLG
+aYO
+kBK
+hyt
+bdl
+tFS
+bdj
+bNs
+nwb
+mrM
+bdl
+uWI
+pMJ
+bCA
+bCA
+dWg
+bdl
+oTe
+ixN
+jaR
+mJa
+wWP
+rsK
+aGc
+kkE
+iEb
+bIT
+bJC
+bJC
+bJC
+bJC
+qFG
+pvJ
+bQD
+bJC
+bJC
+bSJ
+hss
+clp
+hfQ
+bSJ
+bSJ
+bSJ
+bSJ
+wGi
+woG
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(219,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aag
+aag
+pVZ
+psm
+psm
+psm
+ano
+aDF
+bYg
+cNc
+xlX
+qWT
+gyt
+psm
+rsY
+xlX
+qWT
+psm
+qWT
+qWT
+psm
+alG
+aDZ
+aoU
+aqj
+arw
+anP
+fOJ
+aqh
+sqo
+sqo
+aDh
+aDh
+mux
+ayd
+atq
+atq
+wwJ
+inw
+alG
+aYj
+apd
+loP
+joG
+sDu
+kxo
+wSn
+xBY
+lKa
+loP
+ejK
+cxo
+fbx
+xxJ
+vuv
+oeL
+cxo
+hkm
+hlw
+pmk
+qMu
+aag
+aag
+aaf
+aaf
+aaf
+aaf
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+wVb
+wVb
+wVb
+wVb
+eFH
+eFH
+aLT
+vZb
+tnY
+rAN
+tIQ
+cic
+ceg
+mdo
+mJj
+tDZ
+nYc
+bnB
+aVd
+aUZ
+uqA
+bES
+kcl
+aLG
+aYO
+sou
+bAX
+bdl
+wIr
+sAj
+jAB
+iYt
+bMa
+bdl
+rDe
+nUa
+ufJ
+rCK
+cTf
+bdl
+bdl
+nPT
+nPT
+bdl
+bdl
+bdl
+dhU
+vzq
+iEb
+bIT
+hNw
+wos
+bMC
+fcB
+rUh
+jLj
+wPC
+xZU
+hNw
+hmC
+rQA
+hjs
+ivM
+hcI
+hcI
+vPK
+bSJ
+nOG
+vuR
+vTK
+vTK
+vTK
+vTK
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(220,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+amQ
+qWT
+hSu
+xlX
+aDF
+jXY
+dxC
+xlX
+aDz
+mNW
+psm
+adp
+xlX
+wCh
+psm
+qWT
+qWT
+psm
+ylJ
+aDZ
+aoD
+inw
+qHM
+emn
+rdI
+alO
+aqY
+aqY
+aBi
+aDi
+alO
+aye
+amx
+amx
+aBs
+inw
+alG
+aYj
+apd
+loP
+kxo
+wSn
+kxo
+kdi
+xBY
+kxo
+loP
+sFF
+cxo
+fbx
+xxJ
+vuv
+gUy
+nho
+oRj
+hHU
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+fTR
+qaD
+jeU
+dHk
+hlz
+eFH
+aWT
+aMH
+beV
+beV
+udG
+aOK
+dRv
+mdo
+mJj
+bpC
+hsW
+mFO
+bJE
+aSE
+aVf
+bES
+kcl
+aLG
+aZg
+bar
+bdl
+bdl
+bdl
+bdl
+bdl
+bdl
+bdl
+bdl
+bdl
+xWo
+bdl
+bdl
+bdl
+bdl
+cbo
+gRn
+cbo
+cbo
+gRn
+bdl
+bdl
+cbV
+fpO
+bIT
+hNw
+sZq
+jZv
+cgy
+nrw
+spS
+lBv
+cfo
+hNw
+bNC
+sDM
+clr
+nvT
+wGE
+wGE
+erG
+ewO
+bWb
+cAH
+luk
+rQj
+ngs
+gai
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(221,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+amQ
+atG
+psm
+seO
+aDF
+amP
+egB
+xlX
+aDF
+igf
+psm
+atD
+xlX
+xlX
+hSu
+xlX
+xlX
+hSu
+aWd
+aDZ
+nfp
+alO
+alO
+alO
+alO
+alO
+axx
+amw
+anO
+aDj
+inw
+aye
+atq
+atq
+aBs
+alO
+alG
+aDZ
+aWd
+fTF
+xBY
+xBY
+xBY
+xBY
+xBY
+jGI
+loP
+vuv
+hlI
+cHq
+xxJ
+vuv
+vuv
+vuv
+vuv
+kmK
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+vjx
+eFH
+eFH
+eFH
+eFH
+eFH
+aLT
+aZf
+duV
+duV
+eUA
+bfx
+bgY
+mdo
+mJj
+bpC
+gip
+bnt
+bJH
+iIR
+aVf
+bES
+kcl
+aLG
+aYO
+bZK
+qic
+xfc
+bCH
+vZA
+bCH
+bCH
+uIp
+bHm
+bHm
+bHm
+wNm
+bCH
+bCH
+bHm
+bLS
+bCH
+lXF
+bHm
+bCH
+bCH
+qic
+cbW
+iEb
+bIT
+hNw
+sZq
+jZv
+gnu
+bOQ
+chR
+cjg
+cfo
+hNw
+bNC
+ckX
+vuL
+fDh
+jGR
+jGR
+oqu
+bSJ
+vuR
+vuR
+vuR
+vuR
+vuR
+cAH
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(222,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+amW
+auo
+psm
+xlX
+bkR
+bYi
+eJd
+xlX
+aDF
+jXY
+psm
+jXY
+xlX
+qWT
+psm
+qWT
+qWT
+akd
+alG
+aDZ
+xrr
+alO
+gKZ
+vTv
+auL
+alO
+axy
+amA
+atq
+aoT
+inw
+aye
+atq
+atq
+aBs
+alO
+alJ
+aYj
+apd
+gdS
+wSn
+kXN
+fuT
+odD
+xBY
+mOg
+oHx
+fbx
+oVP
+fbx
+gAt
+tly
+flE
+flE
+flE
+xzo
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+ilZ
+eFH
+aLT
+aLT
+aLT
+aLT
+aLT
+aLT
+mhI
+bjA
+xSW
+bAd
+bCS
+aLT
+aLT
+ksp
+gip
+brH
+chp
+chp
+aVf
+aQL
+aQL
+beB
+aYT
+bzY
+aLd
+aLd
+bvS
+aLd
+aLd
+aLd
+aLd
+vub
+vub
+vub
+owW
+vub
+vub
+vub
+aLd
+aLd
+aLd
+bvS
+aLd
+aLd
+aLd
+cbX
+cbS
+ccO
+bJC
+bJC
+bMD
+vND
+vND
+chR
+cjg
+kIP
+bJC
+bSJ
+bTJ
+pUf
+hji
+rPO
+ixD
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+vuR
+ydx
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(223,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+psm
+psm
+psm
+ano
+qWT
+qWT
+adE
+xlX
+wya
+aiE
+psm
+jXY
+xlX
+aeq
+psm
+gIN
+aiA
+akd
+alG
+aDZ
+xrr
+alO
+arz
+atq
+aoT
+alO
+aOG
+azh
+aBk
+aoT
+laQ
+dZr
+auB
+atc
+aOF
+alO
+alG
+aYj
+apd
+gdS
+lBg
+dXd
+loP
+loP
+eMh
+loP
+loP
+vuv
+kJG
+fbx
+okd
+eYH
+rav
+eYH
+eYH
+wWL
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+hlz
+eFH
+aLT
+bBg
+vPv
+oTA
+vPv
+rAN
+tIQ
+vme
+aNQ
+aOL
+uIJ
+hRd
+aLT
+aQL
+bmh
+bnX
+aRo
+brA
+aVf
+lQz
+aQL
+aLG
+aZi
+aLG
+bbs
+cbh
+xYP
+bbs
+oLi
+bCM
+xYP
+cJE
+bOT
+dLt
+bRe
+iFD
+vRa
+vub
+bPL
+bCM
+xSM
+tez
+gsm
+bCM
+bbr
+buH
+iEb
+bIT
+bJC
+jht
+jZv
+cgy
+cgy
+lbX
+uxp
+bJC
+bJC
+bSZ
+ckX
+bUp
+bUN
+bVb
+ivM
+mAV
+hzu
+qNd
+hzu
+hcI
+bSJ
+cAH
+cAH
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(224,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+qWT
+meS
+aAe
+xlX
+qWT
+psm
+psm
+jFX
+psm
+psm
+psm
+igf
+xlX
+qWT
+psm
+psm
+psm
+psm
+alG
+aDZ
+xrr
+alO
+arz
+atq
+aoT
+alO
+axA
+amA
+aBl
+aOB
+aFl
+aHt
+aIU
+aMq
+aOG
+alO
+alG
+aDZ
+apd
+loP
+loP
+loP
+loP
+tGd
+vyI
+lPB
+oHl
+jWh
+vuv
+sdw
+vuv
+vuv
+vuv
+vuv
+vuv
+ldN
+gHg
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+hlz
+hlz
+aLT
+bdr
+bdr
+bdC
+bdr
+bdr
+tVq
+vme
+mLF
+tig
+uIJ
+aPi
+aLT
+tDZ
+gip
+uTv
+bKC
+bOG
+aVf
+iaq
+aQL
+aLG
+aZi
+aLG
+bbs
+bKD
+vTS
+bbs
+xYP
+bCN
+xYP
+qlz
+xYf
+skn
+bQX
+fLS
+cLl
+qlz
+tez
+bCN
+ccQ
+tez
+ccQ
+bCN
+bbr
+buH
+iEb
+bIT
+bJC
+cjC
+jZv
+lLC
+nEo
+nZy
+cjg
+lbf
+bJC
+bTa
+ckX
+iWc
+cqz
+bVb
+wty
+clg
+clg
+clK
+clg
+clg
+bSJ
+cAH
+cea
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(225,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+xlX
+xlX
+aBa
+xlX
+qWT
+psm
+eKD
+nZF
+wMm
+psm
+adp
+qWT
+xlX
+qWT
+qWT
+lWh
+aiE
+psm
+alG
+aDZ
+xrr
+alO
+arz
+atq
+aoT
+alO
+alO
+alR
+aBm
+alR
+alO
+xBe
+xBe
+xBe
+xBe
+xBe
+alG
+aDZ
+apd
+jWh
+eFK
+wGd
+cZW
+pZK
+hSk
+hSk
+uIv
+jWh
+dCt
+xhU
+dsu
+vuv
+ozr
+hWa
+dCP
+ldN
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+rVo
+hlz
+aLT
+bdr
+bdr
+bdC
+bdr
+bdr
+tVq
+vme
+lJO
+uRo
+uIJ
+aLT
+aLT
+bpC
+gip
+xlk
+uuj
+bRg
+aVf
+aQL
+aQL
+fvK
+aZi
+aLG
+bbs
+ydM
+xYP
+bbs
+xYP
+cdn
+xYP
+qlz
+gYe
+skn
+bTx
+bKQ
+tXM
+qlz
+tez
+bpV
+ccQ
+tez
+ccQ
+bpV
+bbr
+buH
+iEb
+bIT
+bJC
+bJC
+kGF
+chq
+bRf
+onN
+cjg
+cfo
+bJC
+bSJ
+bTM
+bUq
+rPE
+bVb
+wty
+clg
+clg
+clK
+clg
+clg
+bSJ
+cAH
+bpJ
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(226,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+ano
+qWT
+aBg
+qWT
+boZ
+psm
+eKD
+oyo
+wQx
+psm
+lhL
+qWT
+xlX
+qWT
+qWT
+qWT
+soQ
+psm
+alJ
+aDZ
+xrr
+xnR
+arm
+ats
+auO
+awB
+axB
+ayV
+auu
+aoT
+aFm
+xBe
+aIV
+qqr
+arH
+xBe
+alG
+aDZ
+apd
+vXd
+duF
+hSk
+hSk
+vyI
+hSk
+hSk
+uIv
+jWh
+xrN
+fbx
+ije
+vuv
+cxo
+wwD
+oda
+ldN
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+qnP
+uia
+aLT
+iPS
+vAE
+iKw
+vAE
+wMG
+tIQ
+nTl
+efK
+aMz
+rGj
+mdo
+mJj
+bHp
+bIU
+tAN
+tAN
+jOi
+aVf
+bES
+kcl
+aLG
+aZi
+aLG
+bbs
+dvs
+xYP
+bbs
+cdm
+bCM
+xYP
+qlz
+fOz
+skn
+bTx
+bTx
+dFF
+qlz
+tez
+bCM
+ccQ
+tez
+ccQ
+bCM
+bbr
+buH
+iEb
+bIT
+hNw
+sZq
+lef
+xRj
+wJD
+cjE
+ozT
+pDB
+hNw
+bNC
+ckX
+qgN
+bTN
+sdC
+ivM
+gEo
+scy
+vSW
+scy
+kPJ
+bSJ
+cAH
+ubd
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(227,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+xlX
+psm
+psm
+rzP
+psm
+psm
+fnZ
+xlX
+xoh
+ckB
+afl
+jUL
+afl
+afl
+afl
+afl
+afl
+wDR
+alP
+ajW
+apc
+alO
+arA
+att
+auS
+alO
+lXg
+amA
+aBn
+aDm
+aFn
+xBe
+azo
+aJg
+abR
+xBe
+alG
+aDZ
+apf
+jWh
+oih
+khE
+ctx
+vyI
+vyI
+kpQ
+vSE
+jWh
+ppc
+iYp
+iZX
+vuv
+cxo
+wwD
+rku
+ldN
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+tAi
+moE
+aLT
+aLT
+aLT
+aLT
+aLT
+aLT
+fbb
+nTl
+bwf
+aMP
+bEG
+mdo
+mJj
+bpC
+bpC
+bpC
+bpC
+vfx
+aVf
+bES
+kcl
+beB
+byI
+beB
+kFY
+jmK
+bDL
+bbs
+xYP
+bCN
+xYP
+vub
+odN
+odN
+gcN
+odN
+odN
+vub
+tez
+bCN
+ccQ
+tez
+ccQ
+bCN
+jhb
+jiw
+cbS
+bHW
+hNw
+sZq
+ltI
+vfa
+cfo
+cfo
+cfo
+cfo
+hNw
+bNC
+uMS
+qmk
+rtV
+sgR
+tvN
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+pUY
+emG
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(228,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+xlX
+psm
+nQg
+szX
+xyE
+psm
+eKD
+pBW
+xtD
+psm
+psm
+psm
+jFX
+psm
+psm
+psm
+psm
+psm
+ylJ
+aDZ
+apd
+alO
+alO
+alO
+alO
+alO
+axD
+amA
+aBo
+axe
+anO
+nFX
+atv
+auV
+amE
+xBe
+alG
+aDZ
+apd
+jWh
+jWh
+uUz
+jWh
+gIJ
+qbZ
+jWh
+jWh
+jWh
+cDW
+fbx
+cXq
+vuv
+vJy
+cxo
+hkm
+hlw
+pmk
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+wzg
+eFH
+aLT
+bBg
+vPv
+oTA
+vPv
+rAN
+tIQ
+aNc
+aNT
+rGj
+bdC
+mdo
+mJj
+sEd
+wDK
+iMr
+wuq
+bRV
+bSe
+bES
+kcl
+aLG
+aZi
+aLG
+bBd
+aPr
+bfl
+bSb
+byw
+bkU
+bAY
+pur
+bxm
+bPM
+jmK
+bRa
+bxm
+pur
+byw
+bzI
+bAY
+bSb
+bEa
+bFp
+bBd
+buH
+iEb
+bIT
+hNw
+sZq
+lwJ
+cgA
+oaW
+yiW
+oaW
+yiW
+hNw
+bNC
+clK
+jdm
+pQN
+snR
+ivM
+qNd
+hzu
+mAV
+hzu
+hcI
+bSJ
+jea
+cAH
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(229,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+yeP
+psm
+jdQ
+bMY
+hfy
+psm
+eKD
+nZF
+xxT
+psm
+uiG
+rTZ
+tfb
+tfb
+tfb
+tfb
+tfb
+ptK
+alG
+aYj
+apd
+alO
+aOM
+aoW
+aty
+alO
+axE
+amA
+aBp
+aDn
+atc
+nFX
+atv
+auV
+amE
+xBe
+alG
+aYj
+apd
+jWh
+xXa
+xXa
+xXa
+pZK
+cKL
+jbH
+rJh
+jWh
+tyz
+eZQ
+fTi
+vuv
+tzi
+cxo
+oRj
+cVs
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+jMi
+eFH
+aLT
+bdr
+bdr
+bdC
+bdr
+bdr
+cBs
+kiV
+iSZ
+uIJ
+kJi
+aLT
+aLT
+aQL
+aQL
+aQL
+aQL
+csZ
+odB
+aQL
+aQL
+aLG
+aZg
+tBF
+bBe
+bFq
+bfm
+bhg
+bvF
+cdo
+bvF
+bvF
+bvF
+bRa
+bRc
+bPM
+bvF
+bvF
+bvF
+cdo
+bvF
+bCD
+bEb
+bFq
+bBe
+bFu
+fpO
+bIT
+bJC
+bJC
+rbH
+cEC
+bJC
+bJC
+bJC
+bJC
+bJC
+bSJ
+hTc
+bUr
+ycd
+sAc
+wty
+clg
+clg
+clK
+clg
+clg
+bSJ
+vuR
+cAH
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(230,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+xlX
+psm
+psm
+psm
+psm
+psm
+psm
+jFX
+psm
+psm
+bNM
+wkX
+jhx
+jhx
+jhx
+jhx
+dnH
+gpc
+aWd
+aYj
+apd
+alO
+uto
+aoX
+auU
+aHu
+aFt
+lEj
+nRX
+aDo
+aFr
+xBe
+nNY
+qKi
+abR
+xBe
+alJ
+ajR
+aTS
+dEt
+soP
+pDr
+soP
+pDr
+soP
+eoG
+uIv
+jWh
+vuv
+sdw
+vuv
+vuv
+vuv
+hlI
+qiI
+ldN
+gHg
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+pQG
+eFH
+aLT
+bdr
+bdr
+bdC
+bdr
+bdr
+cBs
+bsU
+bwg
+bCP
+bdC
+aLT
+bBg
+uAW
+pqK
+uAW
+tDZ
+vil
+bpC
+qZX
+aQL
+kEb
+aZi
+bad
+bbs
+cdp
+cdp
+cdp
+cdp
+bbs
+bJf
+bJf
+bJf
+bJf
+xba
+dNt
+dNt
+dNt
+dNt
+bbs
+fJO
+fJO
+fJO
+fJO
+bbs
+nmD
+iEb
+twT
+bJC
+lbf
+cft
+rQV
+ohj
+wwr
+cDs
+wwr
+lbf
+bSJ
+gGf
+qyi
+hXY
+sSC
+wty
+clg
+clg
+clK
+clg
+clg
+bSJ
+cAH
+ydx
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(231,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+ano
+meS
+cbA
+aRG
+bsF
+psm
+mDJ
+owg
+xUA
+ozz
+vFv
+rob
+owg
+owg
+nwU
+owg
+owg
+ptK
+wOh
+ajP
+apd
+alO
+aOQ
+fxI
+nLJ
+aHv
+aya
+amx
+atq
+aDr
+aFu
+xBe
+azp
+qJf
+anV
+xBe
+alG
+aYj
+apd
+jWh
+iqH
+khE
+khE
+khE
+ovi
+iat
+eim
+jWh
+vuv
+qFW
+vuv
+vuv
+kDi
+vSH
+tly
+hlw
+cxo
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+fhA
+eFH
+aLT
+iPS
+vAE
+iKw
+vAE
+wMG
+tIQ
+btc
+bwh
+uMl
+bdC
+dII
+bdr
+bpC
+brs
+bpC
+bpC
+vil
+bpC
+bpC
+kbc
+aLG
+aYO
+aLG
+bbs
+bdw
+bfo
+rWL
+wLm
+nHJ
+wLm
+wLm
+wLm
+bSa
+xba
+bSa
+wLm
+wLm
+wLm
+nHJ
+wLm
+lJu
+bEd
+bFs
+bbs
+buH
+iEb
+bIT
+fzq
+cfo
+cft
+rQV
+cfo
+cfo
+cgs
+cfo
+cfo
+bZU
+clK
+qFK
+pmq
+sUj
+ivM
+vSW
+scy
+gEo
+scy
+kPJ
+bSJ
+vuR
+ebO
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(232,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+pVZ
+xlX
+xlX
+ePs
+xlX
+xlX
+hSu
+owg
+owg
+uKV
+mDJ
+bNM
+iEr
+owg
+eNi
+eNi
+eNi
+eNi
+eNi
+alG
+aDZ
+apf
+alO
+aOH
+aJf
+aMw
+alO
+xsl
+aya
+atq
+aDr
+aFv
+xBe
+xBe
+xBe
+xBe
+xBe
+alG
+aYj
+wSk
+jWh
+jWh
+jlQ
+jlQ
+jWh
+thV
+uWV
+uIv
+oSx
+vuv
+gHg
+vuv
+vuv
+hlI
+qiI
+nho
+cxo
+trW
+qMu
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+vjx
+eFH
+aLT
+aLT
+aLT
+aLT
+aLT
+aLT
+sCD
+pXl
+bxB
+uWY
+wEd
+jvp
+izG
+gBc
+gBc
+gBc
+gBc
+ngA
+koC
+koC
+xGE
+aem
+mUa
+aLG
+lgy
+ccb
+xYP
+bGn
+mlm
+mlm
+mlm
+bxn
+mlm
+mlm
+xba
+mlm
+mlm
+bxn
+mlm
+mlm
+mlm
+rXk
+xYP
+jew
+laU
+buH
+jGN
+bJb
+uCM
+lNw
+eFj
+iQi
+lNw
+lNw
+lNw
+lNw
+lNw
+erh
+rqE
+qWt
+clg
+rEv
+rll
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+bSJ
+vuR
+tAR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(233,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aah
+aah
+aah
+aag
+aag
+aag
+pVZ
+alT
+iHF
+voA
+aRV
+aRV
+psm
+ptK
+afX
+ptK
+ptK
+bNM
+rtd
+owg
+eNi
+olO
+wiG
+nWN
+eNi
+alG
+aYj
+apd
+alO
+alO
+alO
+alO
+alO
+axI
+amA
+amx
+aDr
+aFw
+inw
+aJh
+arq
+ufx
+alR
+alG
+aYj
+apf
+jWh
+hSk
+hSk
+cRi
+jWh
+upR
+fCL
+uIv
+vVw
+lwi
+cxo
+iEs
+cxo
+fbx
+fbx
+fbx
+kfX
+qVU
+qMu
+aag
+aag
+aag
+aah
+aah
+aah
+afm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+fTR
+hlz
+hlz
+hlz
+hlz
+fTR
+hlz
+aLT
+bdr
+bdr
+uJU
+bdr
+bdr
+aLT
+lDV
+bpC
+brs
+bpC
+bpC
+jOx
+bpC
+bpC
+aQL
+jKA
+aYT
+beB
+lgy
+bsG
+xYP
+rWL
+dMB
+dMB
+dMB
+dMB
+dMB
+fsV
+xba
+fsV
+dMB
+dMB
+dMB
+dMB
+dMB
+lJu
+xYP
+hLI
+laU
+drt
+rZF
+bJz
+bJC
+cfo
+cfo
+lkM
+cfo
+cfo
+cgs
+cfo
+tEO
+bSJ
+clg
+clg
+kPJ
+clg
+clg
+bSJ
+rHs
+ngs
+vuR
+cAH
+cAH
+cAH
+fKl
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(234,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+pVZ
+anu
+auD
+tIU
+nEG
+jXY
+psm
+bKm
+hsr
+mDJ
+ptK
+bNM
+iEr
+fhH
+eNi
+ueG
+rPt
+jyE
+eNi
+alG
+aYj
+apd
+hwC
+rcS
+amx
+swN
+alO
+axL
+amA
+amx
+aDr
+aFy
+inw
+aJi
+azs
+atq
+alR
+alG
+aYj
+apd
+jlQ
+tst
+uUe
+hSk
+bSN
+pZK
+fCL
+uIv
+lFA
+vuv
+cxo
+vuv
+vuv
+cxo
+cxo
+vqO
+sXK
+tbD
+qMu
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+wVb
+wVb
+wVb
+wVb
+hlz
+eFH
+hlz
+aLT
+iPS
+vAE
+meY
+iPS
+vAE
+aLT
+iPS
+wDK
+iMr
+wDK
+rou
+jOx
+bpC
+ksp
+aQL
+aLG
+bSY
+aWR
+cau
+bCG
+cgE
+bJe
+jmK
+xYP
+xYP
+xYP
+xYP
+jmK
+xba
+jmK
+xYP
+xYP
+xYP
+xYP
+jmK
+hcw
+cgE
+hLI
+blq
+bIT
+jHe
+bIS
+bJC
+kIP
+cfo
+lkM
+oaW
+yiW
+oaW
+yiW
+kIP
+bSJ
+vSW
+scy
+oer
+vSW
+scy
+bSJ
+tSr
+pUY
+lGr
+vTK
+vTK
+vTK
+vTK
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(235,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+qJx
+hsr
+mDJ
+ptK
+bNM
+iEr
+owg
+eNi
+iKD
+rPt
+rPt
+eNi
+alG
+aYj
+apd
+alR
+amA
+atq
+swN
+alO
+alO
+cHc
+azn
+aDs
+alO
+alO
+aJj
+aMD
+atq
+alR
+alG
+aYj
+apd
+jlQ
+tZZ
+gLz
+hSk
+gIJ
+ovi
+fCL
+lYk
+bYn
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+rVo
+eFH
+hlz
+aLT
+meY
+meY
+meY
+meY
+meY
+meY
+aLT
+aQL
+aQL
+aQL
+aQL
+pyl
+pDt
+aQL
+aQL
+aLG
+aYO
+aLG
+lgy
+ccN
+xYP
+rWL
+wLm
+wLm
+wLm
+wLm
+wLm
+bSa
+xba
+bSa
+wLm
+wLm
+wLm
+wLm
+wLm
+lJu
+xYP
+hLI
+laU
+eUz
+iEb
+bIT
+bJC
+bJC
+vLA
+oHc
+bJC
+bJC
+bJC
+bJC
+bJC
+oer
+oer
+oer
+oer
+oer
+oer
+oer
+ybr
+vuR
+ebO
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(236,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+cuC
+wdJ
+hsr
+hsr
+ptK
+krS
+rtd
+owg
+eNi
+eNi
+eNi
+gIh
+eNi
+geH
+aDZ
+apd
+alR
+amA
+atq
+sOx
+alO
+axM
+amA
+atq
+aDr
+aFz
+inw
+amA
+ayl
+amx
+alR
+alG
+aYj
+apd
+jWh
+jmQ
+hSk
+lIU
+jWh
+thV
+uWV
+tiK
+bYn
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+cbZ
+eFH
+eFH
+eFH
+eFH
+eFH
+eFH
+eFH
+hlz
+eFH
+hlz
+aQL
+qZX
+qZX
+tDZ
+jOx
+bpC
+qZX
+aQL
+aLG
+aYO
+aLG
+lgy
+ccb
+xYP
+bGn
+mlm
+mlm
+mlm
+bxn
+mlm
+mlm
+xba
+mlm
+mlm
+bxn
+mlm
+mlm
+mlm
+rXk
+xYP
+jew
+laU
+buH
+iEb
+bIT
+bJC
+lbf
+cfo
+lkM
+lbf
+lbf
+lbf
+bJC
+vuR
+oyG
+vuR
+cAH
+rDi
+pXn
+cAH
+vuR
+vuR
+vuR
+vuR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(237,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aag
+cuC
+evk
+hsr
+mDJ
+ptK
+bNM
+iEr
+owg
+eNi
+aWb
+dyK
+vzK
+wYY
+alG
+aDZ
+apd
+alR
+amA
+atq
+sOx
+alO
+axN
+azq
+auy
+aDB
+aFA
+inw
+aJl
+amx
+atq
+alR
+alG
+aYj
+apd
+jlQ
+snE
+sGL
+hSk
+bSN
+pZK
+fCL
+dbe
+bYn
+aag
+aag
+aag
+aag
+aag
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+afm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+bbv
+hJb
+hlz
+hlz
+hlz
+hlz
+wZH
+hlz
+hlz
+hlz
+hlz
+aQL
+bpC
+bpC
+bpC
+jOx
+bpC
+bpC
+bTb
+aLG
+aYO
+aLG
+bbs
+ccd
+ccN
+rWL
+dMB
+uVD
+dMB
+dMB
+dMB
+fsV
+xba
+fsV
+dMB
+dMB
+dMB
+uVD
+dMB
+lJu
+huK
+jeQ
+bbs
+buH
+iEb
+bIT
+xSw
+cfo
+cfo
+lkM
+cfo
+cfo
+cfo
+bJC
+vuR
+cAH
+vuR
+cAH
+vuR
+dcS
+cAH
+vuR
+cAH
+cAH
+xZK
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(238,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+rAC
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+cuC
+apB
+cBd
+jRK
+ptK
+bNM
+iEr
+owg
+eNi
+uqB
+eJX
+sAC
+wYY
+alG
+aDZ
+apd
+alR
+amA
+amx
+apa
+alO
+axO
+azr
+aBr
+aDC
+aFB
+alO
+aJk
+amx
+atq
+alR
+alG
+aYj
+apd
+jlQ
+tZZ
+cBj
+hSk
+gIJ
+ovi
+fCL
+tiK
+bYn
+aag
+aag
+aag
+aag
+ajZ
+opJ
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+eFH
+rdK
+aQL
+bpC
+bpC
+bpC
+osA
+cHl
+cHl
+bTb
+beB
+aYT
+beB
+bbs
+cdp
+cdp
+jks
+cdp
+bbs
+bJf
+bJf
+bJf
+bJf
+xba
+dNt
+dNt
+dNt
+dNt
+bbs
+fJO
+fJO
+fJO
+fJO
+bbs
+bJz
+cbS
+bHW
+xSw
+ejo
+ejo
+niY
+cfo
+cfo
+cfo
+bJC
+cAH
+vuR
+vuR
+vTK
+vTK
+hTk
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(239,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+cuC
+ptK
+ptK
+ptK
+ptK
+bNM
+iEr
+owg
+eNi
+sjj
+fzP
+sAC
+wYY
+alG
+aYj
+apd
+alR
+amA
+atq
+fhf
+alO
+axQ
+azt
+auA
+aDD
+aFD
+inw
+xEO
+xEO
+lnP
+alR
+alG
+aYj
+apf
+jWh
+hSk
+hSk
+cRi
+jWh
+upR
+uWV
+uIv
+bYn
+bYn
+bYn
+aag
+aag
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+iDm
+fTR
+aQL
+ksp
+ksp
+rou
+bpC
+bpC
+bpC
+bTb
+aLG
+aYO
+aLG
+bBh
+aLG
+aLG
+aLG
+aLG
+byC
+aLG
+beB
+aLG
+aLG
+bsT
+buH
+buH
+bJz
+buH
+bSd
+buH
+buH
+buH
+buH
+cbD
+buH
+iEb
+bIT
+xSw
+cfo
+cfo
+cfo
+kIP
+qer
+kIP
+bJC
+cAH
+cAH
+ebO
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(240,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+hzc
+hzc
+hzc
+cuC
+dbw
+uGQ
+bNM
+rtd
+owg
+eNi
+fcM
+uzE
+qsL
+nim
+qhc
+ajP
+apd
+alR
+amA
+atq
+cSm
+alO
+elf
+amA
+atq
+aDE
+asT
+aHw
+iWR
+iWR
+kbx
+alR
+alG
+aYj
+apd
+jWh
+jWh
+jlQ
+jlQ
+jWh
+lhJ
+fCL
+uIv
+oXJ
+kPR
+bYn
+hzc
+hzc
+hzc
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+eFH
+hlz
+aQL
+aQL
+aQL
+aQL
+ksp
+rou
+rou
+aQL
+aLG
+aZl
+tBF
+sOm
+tBF
+aQt
+bhn
+aQt
+aQt
+aQt
+crW
+aQt
+aQt
+mji
+buI
+buI
+bUz
+buI
+buI
+buI
+bCE
+buI
+bFu
+cbE
+bFu
+bIl
+bIX
+bJC
+kIP
+qer
+kIP
+bJC
+bJC
+bJC
+bJC
+vuR
+vuR
+vuR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(241,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+yjq
+bZc
+iHc
+sbq
+rLk
+hsr
+bNM
+iEr
+owg
+eNi
+xlC
+gyO
+kTN
+eNi
+alJ
+aYj
+apd
+alR
+amA
+atq
+civ
+dof
+atq
+arm
+atc
+atc
+atc
+inw
+xEO
+xEO
+aOV
+alR
+alG
+aYj
+apd
+jWh
+kUw
+dod
+eNv
+rxV
+thV
+fCL
+uIv
+hSk
+vVw
+jzD
+iHc
+bZc
+mZF
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+eFH
+hlz
+hlz
+hlz
+hlz
+rdK
+rdK
+rdK
+rdK
+rdK
+tfl
+aZm
+aWR
+buU
+aWR
+bjb
+bal
+bjb
+bjb
+aWR
+bNX
+aWR
+aWR
+bsV
+buJ
+buJ
+bUG
+buJ
+bzK
+bzK
+bCF
+bzK
+buJ
+cdZ
+buJ
+buJ
+jMb
+bJC
+bJC
+bJC
+bJC
+bJC
+cAH
+cAH
+cAH
+vuR
+cAH
+wZT
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(242,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+yjq
+jgw
+wbJ
+sbq
+rLk
+hsr
+bNM
+iEr
+fhH
+eNi
+oNb
+iFC
+qAA
+eNi
+alG
+aDZ
+apd
+alR
+arK
+atc
+civ
+kwd
+atq
+atq
+amA
+aDH
+aFI
+alO
+aJq
+aMG
+aOW
+alR
+alG
+aYj
+apd
+jWh
+tZP
+hSk
+hSk
+vyI
+thV
+fCL
+uIv
+hSk
+vVw
+jzD
+wLi
+jgw
+mZF
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+jmg
+hlz
+eFH
+eFH
+hlz
+hlz
+gwF
+eFH
+eFH
+rdK
+rdK
+aZn
+rdK
+rdK
+bCW
+bEH
+bHt
+bJi
+bKE
+bKE
+bkZ
+bpX
+bpX
+bpX
+bpX
+bpX
+bkZ
+bWV
+jkd
+bYE
+bZz
+cav
+bBa
+haq
+haq
+lAA
+haq
+haq
+cAH
+cAH
+cAH
+cAH
+cAH
+cAH
+cAH
+cAH
+cAH
+ngs
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(243,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+hzc
+hzc
+hzc
+cuC
+vvy
+uGQ
+bNM
+rtd
+owg
+eNi
+eNi
+eNi
+eNi
+eNi
+aEp
+lIw
+aEp
+alO
+alO
+alO
+alO
+alO
+azi
+azi
+ets
+kvh
+rka
+alO
+alO
+alO
+alO
+alO
+aEp
+lIw
+aEp
+jWh
+nDL
+vyI
+vyI
+wTJ
+thV
+uWV
+uIv
+oXJ
+uGc
+bYn
+hzc
+hzc
+hzc
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+epA
+wDm
+hlz
+hlz
+hlz
+hlz
+gwF
+hlz
+hlz
+rdK
+aYc
+hlz
+hlz
+rdK
+rdK
+aVl
+bHu
+aVl
+bkZ
+bkZ
+bkZ
+bpY
+brw
+bqf
+buK
+bvI
+bkZ
+bkZ
+bkZ
+aVl
+bZA
+aVl
+haq
+haq
+cAH
+vuR
+cAH
+cAH
+vuR
+vuR
+vuR
+cAH
+cAH
+cAH
+cAH
+vuR
+sIV
+hBU
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(244,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aad
+aag
+aag
+cuC
+cuC
+cuC
+bNM
+iEr
+owg
+owg
+dWX
+owg
+owg
+ptK
+aGD
+aPb
+apj
+aqq
+aPa
+eky
+eky
+alO
+aqY
+aqY
+alO
+aqY
+aqY
+alO
+eky
+eky
+aPa
+aqq
+aGD
+aPb
+kff
+jWh
+xXa
+xXa
+xXa
+xXa
+pZK
+fCL
+uTZ
+bYn
+bYn
+bYn
+aag
+aag
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+pIk
+bNT
+wul
+eFH
+eFH
+eFH
+ybS
+wul
+hlz
+hlz
+hlz
+hlz
+eFH
+eFH
+rdK
+bEU
+bjl
+bJj
+bkZ
+bmM
+cEx
+bpZ
+brx
+boH
+jnf
+hfO
+bxo
+byz
+bkZ
+bEV
+bCI
+ccW
+haq
+pFM
+hzV
+vuR
+vuR
+vuR
+cAH
+fXd
+cAH
+vuR
+cAH
+vuR
+vuR
+rgA
+brX
+mfI
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(245,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aae
+aah
+aah
+aah
+aag
+uMc
+vFv
+wOt
+odl
+jhx
+keR
+jhx
+keR
+dwI
+aTS
+wqq
+agJ
+hal
+uYg
+nau
+uYg
+uYg
+bXf
+aDO
+aDO
+aDO
+gQO
+uYg
+uYg
+nau
+uYg
+hal
+aGC
+wqq
+aTS
+mPh
+soP
+tWi
+soP
+pDr
+tWi
+tpd
+eim
+pql
+aag
+aah
+aah
+aah
+afm
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+aUx
+aVl
+aVl
+aVl
+bxE
+aVl
+rdK
+iDm
+rdK
+bEU
+bjl
+bJj
+bkZ
+bmN
+boI
+boI
+brx
+boH
+jnf
+shb
+boI
+byA
+bkZ
+bBc
+bCI
+ccW
+haq
+vuR
+haq
+aVl
+bxE
+aep
+aep
+aep
+dKL
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(246,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aad
+uMc
+bNM
+rmf
+uZH
+bFt
+kPG
+kPG
+cVw
+ptK
+aIe
+anR
+lNl
+aqq
+eky
+aNl
+eky
+eky
+nCT
+vsh
+vsh
+vsh
+ydY
+eky
+eky
+aNl
+eky
+aqq
+aIe
+iYj
+lNl
+jWh
+tim
+uWV
+ttd
+nLk
+rCD
+eYR
+uIv
+pql
+ajZ
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aUx
+pXj
+btm
+aVl
+bxF
+byJ
+aVl
+vsV
+rdK
+bEU
+bjl
+ccW
+bKO
+bvL
+bvL
+bvL
+bPR
+bRi
+bSk
+bvL
+bvL
+bvL
+bKO
+bEU
+bCI
+uVR
+haq
+mHR
+aVl
+ccx
+bBm
+ggQ
+afk
+afk
+dKL
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(247,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+aac
+aag
+cuC
+htb
+pfc
+ptK
+ptK
+ucp
+cIW
+ptK
+ptK
+psm
+dKm
+psm
+aHe
+jlT
+exi
+eky
+eky
+eAC
+aBu
+aBu
+aBu
+eAC
+eky
+eky
+ins
+wRP
+aHe
+vuv
+vuv
+vuv
+jWh
+jWh
+olk
+jWh
+jWh
+jWh
+jAJ
+lAu
+bYn
+aag
+ajY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aag
+aag
+aUx
+pXj
+btm
+aVl
+bxG
+byK
+aVl
+hlz
+rdK
+wun
+bht
+pfh
+pWf
+bmP
+pop
+lJa
+bPZ
+bRj
+bSl
+smr
+nel
+bQu
+bRu
+bYI
+pIf
+bJk
+haq
+cAH
+aVl
+byQ
+ccR
+aWZ
+bLx
+bMJ
+dKL
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(248,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+cuC
+cuC
+cuC
+bNM
+ofK
+ptK
+uXL
+gPc
+trB
+exy
+ptK
+psm
+psm
+psm
+eky
+eky
+aNl
+eky
+uNV
+aHe
+aDQ
+aDQ
+aDQ
+aHe
+uNV
+eky
+aNl
+eky
+rqj
+vuv
+nfS
+emx
+jWh
+qCg
+xjw
+pfA
+xAC
+jWh
+lbB
+uIv
+bYn
+bYn
+bYn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aah
+aah
+aUx
+uLN
+btm
+btm
+bxH
+byL
+aVl
+bxE
+aVl
+vWK
+bjl
+ccW
+bKO
+bqa
+bqa
+aaj
+bQa
+bRk
+bSm
+bvK
+bUI
+bqa
+bKO
+bEU
+bCI
+ccW
+aVl
+bxE
+aVl
+ccy
+diF
+aep
+aep
+aep
+dKL
+aah
+aah
+afm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(249,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+cuC
+uiG
+tfb
+rFy
+ofK
+ptK
+uXL
+eet
+fcP
+pDh
+ptK
+xlX
+xlX
+hSu
+aMT
+aMT
+dPm
+qeF
+aHe
+aHe
+aDX
+yge
+aEm
+aHe
+aHe
+okg
+dPm
+aMT
+aMT
+iEs
+cxo
+cxo
+jWh
+uUV
+rsW
+rsW
+fnQ
+jWh
+lbB
+cKL
+xXa
+xoO
+bYn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aUx
+btn
+btm
+btm
+bxI
+byM
+aVl
+nmb
+aVl
+brI
+bjl
+sPA
+bkZ
+bmR
+boI
+bqe
+brx
+tzz
+jnf
+ePY
+bxr
+byD
+bkZ
+bYK
+bCI
+oAd
+aVl
+fLX
+aVl
+byQ
+ccS
+ggQ
+bLy
+bLy
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(250,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+cuC
+bNM
+rmf
+luY
+ncp
+ptK
+cQg
+wxj
+lht
+rYv
+ptK
+qWT
+jBB
+psm
+svf
+arV
+wZX
+eky
+aDQ
+ayi
+eky
+aBx
+eky
+jlX
+aDQ
+eky
+wZX
+arV
+vUh
+vuv
+xct
+cxo
+jWh
+dkS
+rsW
+naQ
+fnQ
+jWh
+xPZ
+pcv
+eYR
+uIv
+bYn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aUx
+sXV
+cWt
+cWt
+pFA
+byN
+bAf
+bBq
+bAf
+bje
+bhw
+ccW
+bkZ
+bkZ
+wie
+boI
+brx
+bNZ
+jnf
+boI
+gXq
+bkZ
+bkZ
+hdg
+bCJ
+bEj
+cce
+cbH
+cce
+ccz
+ccT
+aWZ
+bLz
+bMK
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(251,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+cuC
+aeM
+ofK
+ptK
+ptK
+ptK
+ptK
+ptK
+afX
+ptK
+ptK
+qWT
+psm
+psm
+eky
+arV
+wZX
+eky
+aDQ
+pyy
+eky
+eky
+eky
+dLc
+aDQ
+eky
+wZX
+arV
+eky
+vuv
+vuv
+cxo
+jWh
+jWh
+kLc
+jWh
+jWh
+jWh
+jWh
+jWh
+lbB
+oCf
+bYn
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dKL
+aep
+aep
+aep
+bkt
+btm
+fxu
+bBp
+fxu
+bFc
+bjl
+bjd
+gXY
+bkZ
+xlY
+boI
+brx
+bNZ
+jnf
+boI
+kqc
+bkZ
+tmA
+bfs
+bCI
+cay
+fxu
+cbG
+fxu
+ccA
+bZE
+aep
+aep
+aep
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(252,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+uMc
+bNM
+ofK
+psm
+kSd
+qWT
+tZm
+qWT
+xlX
+hWU
+qWT
+aeq
+psm
+aNe
+eky
+arV
+wZX
+eky
+aHe
+jMQ
+eky
+eky
+eky
+dEn
+aHe
+eky
+wZX
+arV
+eky
+aNe
+vuv
+ahb
+cxo
+nJy
+boC
+cxo
+iwh
+kfv
+vGr
+vuv
+lbB
+uIv
+pql
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dKL
+afk
+aWo
+aWZ
+byg
+byO
+aVl
+bxE
+aVl
+bFe
+bjl
+bjg
+ccW
+bKO
+boI
+boI
+brx
+tzz
+jnf
+boI
+boI
+bKO
+bEU
+bYM
+cxe
+caz
+aVl
+bxE
+aVl
+ccB
+ccV
+aWZ
+bLA
+afk
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(253,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+uMc
+bNM
+ofK
+psm
+kSd
+qWT
+nwu
+qWT
+xlX
+rwb
+qWT
+jXY
+psm
+atY
+aMT
+aMT
+svl
+pzJ
+qDt
+uYg
+vsh
+oPf
+vsh
+uYg
+qDt
+pzJ
+sQO
+aMT
+aMT
+atY
+vuv
+woM
+nqD
+cxo
+boC
+cxo
+qMf
+wUN
+jgC
+vuv
+lbB
+uIv
+pql
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dKL
+aVo
+aWp
+aWZ
+byh
+byQ
+aVl
+hlz
+rdK
+bFf
+aVp
+ddj
+sfU
+fWT
+bKT
+bKT
+ect
+lrs
+put
+bKT
+bKT
+bWZ
+kJC
+mbn
+mUZ
+caA
+haq
+cAH
+aVl
+ccC
+ccW
+ggQ
+afk
+bML
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(254,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+uMc
+bNM
+rtd
+hSu
+xlX
+xlX
+xlX
+xlX
+xlX
+aiE
+qWT
+atD
+psm
+psm
+aRp
+aRp
+jBX
+akS
+aHe
+oxU
+bsy
+oir
+gzw
+shh
+aHe
+tKf
+jBX
+aRp
+edx
+vuv
+vuv
+myC
+crP
+cxo
+fbx
+fbx
+fbx
+fbx
+fbx
+iEs
+uWV
+uIv
+pql
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dKL
+afk
+afk
+ggQ
+aAb
+byR
+aVl
+eFH
+rdK
+bFg
+bHv
+bjg
+bld
+bkZ
+boN
+gUI
+brC
+bsZ
+buQ
+mOr
+kFq
+bkZ
+bzP
+bjg
+gJq
+caB
+haq
+vuR
+aVl
+ccD
+ccX
+aWZ
+bLC
+afk
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(255,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+cuC
+htb
+pfc
+psm
+psm
+psm
+psm
+pPz
+xlX
+xlX
+xlX
+xlX
+xlX
+hSu
+qYG
+atM
+bGc
+atK
+aHe
+aHe
+aHe
+aHe
+aHe
+aHe
+aHe
+atM
+bGc
+atK
+qYG
+iEs
+fbx
+fbx
+jaj
+fbx
+boC
+hPg
+vuv
+vuv
+vuv
+vuv
+jAJ
+lAu
+bYn
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dKL
+dKL
+aep
+aep
+byk
+byQ
+aVl
+eFH
+rdK
+bhB
+bhB
+uEc
+bKU
+bhB
+gir
+bpX
+bpX
+bpX
+bpX
+bpX
+gir
+bhB
+bXP
+bjn
+bhB
+bhB
+haq
+mHR
+aVl
+ccE
+bjd
+aep
+aep
+dKL
+dKL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(256,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+cuC
+bNM
+tgK
+tfb
+skg
+eaX
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+pVZ
+aPw
+avu
+mhG
+cFn
+cYu
+aHe
+fdX
+wcR
+xJh
+aHe
+qYu
+dxK
+dPC
+aMU
+aPw
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+qMu
+euY
+vME
+jHL
+wOK
+uIv
+bYn
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aUx
+bvQ
+bwj
+byl
+bzj
+aVl
+eFH
+eFH
+bhB
+bfA
+bLe
+bKV
+bhB
+fEg
+bOl
+bOm
+bRr
+bXt
+bUX
+szm
+bhB
+bXQ
+bLe
+psp
+bhB
+cAH
+vuR
+aVl
+bzj
+cHO
+cdr
+cer
+aUx
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(257,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+cuC
+riJ
+kHY
+uhM
+fcP
+xJn
+cuC
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aPw
+aqJ
+aBu
+odu
+aMT
+aEg
+aDO
+aDO
+aDO
+aEg
+aMT
+odV
+aBu
+aqp
+aPw
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+bYn
+tAh
+thV
+rDb
+qjV
+rID
+bYn
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aUx
+aWr
+aUx
+aUx
+aUx
+aUx
+hlz
+hlz
+bhB
+bHy
+bLe
+bKV
+bMB
+bOc
+plE
+plE
+plE
+plE
+plE
+bxs
+bMB
+bXQ
+bLe
+bHy
+bhB
+kpX
+lGr
+aUx
+aUx
+aUx
+aUx
+aWr
+aUx
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(258,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+cuC
+cuC
+umy
+iKZ
+tiw
+cuC
+cuC
+mNX
+mNX
+mNX
+mNX
+mNX
+mNX
+cus
+aPw
+aPw
+atM
+bGc
+atK
+avu
+aMT
+arV
+aMT
+aMU
+atM
+bGc
+atK
+aPw
+aPw
+mNX
+mNX
+mNX
+mNX
+mNX
+mNX
+qOk
+bYn
+bYn
+tjj
+kHS
+rID
+bYn
+bYn
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aae
+aah
+aag
+aag
+aag
+wVb
+iDm
+eFH
+bhB
+ozi
+bJF
+bKW
+bXR
+bUJ
+bTi
+aut
+aut
+aut
+xjC
+fxW
+bXl
+bzU
+bYO
+bZD
+bhB
+vim
+woG
+vTK
+aag
+aag
+aag
+aah
+afm
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(259,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+cuC
+mkH
+rtd
+fcP
+cuC
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+aPw
+vgD
+mhG
+had
+eAL
+pzJ
+oPf
+pzJ
+had
+eAL
+dPC
+ihX
+aPw
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+bYn
+kcA
+uWV
+uIv
+bYn
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+wVb
+hlz
+hlz
+bhB
+bJQ
+bLe
+usw
+bMF
+blo
+ktO
+bUW
+bMQ
+bXr
+lfQ
+blo
+bXm
+bXS
+bLe
+bJR
+bhB
+cAH
+cAH
+vTK
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(260,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+cuC
+vRu
+ngU
+ssU
+cuC
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+aPw
+aqJ
+aBA
+aqp
+avu
+eky
+dPm
+eky
+aMU
+aqJ
+aBA
+aqp
+aPw
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+bYn
+thV
+uWV
+uIv
+bYn
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+wVb
+eFH
+eFH
+bhB
+bHz
+bJI
+bKW
+bEn
+rFu
+pQq
+bQe
+bTl
+bSt
+buW
+bUL
+bXn
+bzU
+bYS
+bJR
+bhB
+cAH
+cAH
+vTK
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(261,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+uMc
+gbs
+iEr
+hFw
+uMc
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+aPw
+aHe
+aHe
+aHe
+mtD
+eky
+wZX
+eky
+nKq
+aHe
+aHe
+aHe
+aPw
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+pql
+thV
+fCL
+uIv
+pql
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+wVb
+hlz
+eFH
+bhB
+bhB
+hxp
+bKV
+bLe
+laj
+xjC
+ktO
+bPd
+lfQ
+ddK
+qXx
+bLe
+bXQ
+bJR
+bhB
+bhB
+vuR
+mHR
+vTK
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(262,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+uMc
+nrO
+iEr
+fcP
+uMc
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+aPw
+aHe
+aHe
+aHe
+avu
+eky
+wZX
+eky
+aMU
+aHe
+aHe
+aHe
+aPw
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+pql
+thV
+fCL
+uIv
+pql
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+wVb
+hlz
+hlz
+hlz
+bhB
+bYV
+bKV
+bhB
+bOh
+lfQ
+ktO
+bOk
+lfQ
+ktO
+bnc
+bhB
+bXU
+bYV
+bhB
+jcK
+cAH
+cAH
+vTK
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(263,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+uMc
+aVC
+iEr
+fcP
+uMc
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+jbq
+jXW
+jcZ
+aDO
+qqu
+eky
+aNl
+eky
+dFk
+aDO
+nzI
+jXW
+jbq
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+pql
+thV
+fCL
+uIv
+pql
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+wVb
+eFH
+eFH
+eFH
+bhB
+bJK
+bLc
+bhB
+bUY
+lfQ
+brJ
+plE
+buW
+ktO
+bMW
+bhB
+bXV
+bJK
+bhB
+rbp
+vuR
+rbp
+vTK
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(264,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+aad
+cuC
+mJx
+rtd
+odb
+cuC
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+jbq
+qtR
+avu
+eky
+eky
+nJu
+aNl
+eky
+eky
+eky
+aMU
+qtR
+jbq
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+bYn
+thV
+uWV
+oCf
+bYn
+ajZ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+wVb
+wVb
+rVo
+hlz
+bhB
+bJK
+bKV
+bhB
+bXu
+boU
+rFu
+blo
+riQ
+okz
+bMV
+bhB
+bXQ
+bJK
+bhB
+kpX
+emG
+vTK
+vTK
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(265,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+cuC
+cuC
+dqg
+rtd
+fcP
+cuC
+cOK
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+eJQ
+aPw
+aHe
+dnJ
+eky
+eky
+eky
+aNl
+eky
+eky
+eky
+hfw
+aHe
+aPw
+eJQ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+wZv
+bYn
+thV
+uWV
+uIv
+bYn
+bYn
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+qnP
+uia
+bhB
+bhB
+blm
+bhB
+bhB
+bOi
+xcp
+kkO
+gzr
+kXK
+bhB
+bhB
+bzX
+bhB
+bhB
+ybr
+vuR
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(266,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+uMc
+iKc
+uiG
+cMN
+trB
+nVX
+jcP
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+etf
+ohH
+atM
+aDO
+atK
+eky
+eky
+aNl
+eky
+eky
+atM
+aDO
+atK
+sjr
+xjz
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+dbq
+xBn
+vME
+hSt
+xoO
+rjG
+pql
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+hlz
+moE
+bhB
+bJM
+bLd
+fir
+jfM
+bQi
+bMM
+bSy
+bMM
+bSx
+hbZ
+ebJ
+xiC
+fYG
+bhB
+vuR
+woG
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(267,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+uMc
+cIG
+vqD
+iEr
+fcP
+blJ
+jcP
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+etf
+aPz
+avu
+arV
+aMU
+ssX
+vsh
+iPD
+vsh
+fCp
+avu
+arV
+aMU
+aPz
+xjz
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+dbq
+gIJ
+thV
+fCL
+lne
+wEI
+pql
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+eFH
+eFH
+bhB
+bJN
+bLd
+bMM
+bMM
+bMM
+bMM
+bSy
+bMM
+bMM
+bMM
+bMM
+bLd
+bYU
+bhB
+jdy
+cAH
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(268,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+uMc
+dfg
+rAP
+vqK
+lht
+blJ
+jcP
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+etf
+aPz
+aqJ
+aBu
+aqp
+nkn
+lyw
+iZg
+lyw
+nkn
+aqJ
+aBu
+aqp
+aPz
+xjz
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+dbq
+gIJ
+tjj
+ofH
+gms
+ydh
+pql
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+hlz
+hlz
+bhB
+bJP
+mzO
+bMN
+bMN
+fcI
+bSy
+bSy
+bSy
+dNx
+bMN
+bMN
+tdx
+bYW
+bhB
+vuR
+ydx
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(269,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+cuC
+ptK
+bSD
+iEr
+xKM
+cuC
+uiR
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+oee
+aPw
+sYD
+aMT
+aMT
+uqI
+aHe
+aHe
+aHe
+rdh
+aMT
+aMT
+bZR
+aPw
+oee
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+kMK
+bYn
+gEv
+fCL
+lol
+jWh
+bYn
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+eFH
+eFH
+bhB
+hrX
+fIx
+bMM
+bMM
+hgt
+bMM
+bMM
+bMM
+bMM
+bMM
+bMM
+bYU
+gNd
+bhB
+cAH
+cAH
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(270,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+cuC
+ptK
+new
+iEr
+paI
+cuC
+cOK
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+eJQ
+aPw
+ebn
+aMT
+aMT
+eky
+aHe
+aHe
+aHe
+eky
+aMT
+aMT
+oOO
+aPw
+eJQ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+wZv
+bYn
+vVw
+fCL
+tNP
+jWh
+bYn
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+hlz
+hlz
+bhB
+sgM
+fIx
+bMM
+bMM
+bhB
+kvz
+kvz
+kvz
+bhB
+kGX
+bMM
+bYU
+upe
+bhB
+vuR
+vuR
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(271,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+uMc
+jMG
+uiG
+iUW
+trB
+ozN
+jcP
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+etf
+gZP
+atM
+aDO
+atK
+eky
+fRC
+lFe
+fRC
+eky
+atM
+aDO
+atK
+aPx
+xjz
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+dbq
+diz
+vME
+hSt
+xoO
+adC
+pql
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+eFH
+eFH
+bhB
+svd
+bLf
+dCS
+bMM
+bhB
+bQk
+xfi
+bSG
+bhB
+bMM
+dCS
+tLy
+svd
+bhB
+cAH
+cAH
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(272,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+uMc
+msP
+ugJ
+kNk
+cXY
+blJ
+jcP
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+etf
+aPz
+avu
+arV
+aMU
+arV
+arV
+arV
+arV
+arV
+avu
+arV
+aMU
+aPz
+xjz
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+dbq
+gIJ
+thV
+fCL
+lne
+wWq
+pql
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+aKQ
+aaa
+aaa
+aab
+aab
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+hlz
+eFH
+bhB
+bhB
+bhB
+bhB
+cZJ
+bhB
+bhB
+bhB
+bhB
+bhB
+cZJ
+bhB
+bhB
+bhB
+bhB
+vuR
+vuR
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(273,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+uMc
+spK
+nlW
+uZH
+lht
+blJ
+jcP
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+etf
+aPz
+aqJ
+aBu
+aqp
+eky
+eky
+eky
+eky
+eky
+aqJ
+aBu
+aqp
+aPz
+xjz
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+dbq
+gIJ
+tjj
+jRC
+gms
+qeK
+pql
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aKQ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aak
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+hlz
+eFH
+fKg
+tce
+bhB
+heg
+lfQ
+blo
+vNF
+xuU
+vNF
+blo
+ktO
+heg
+bhB
+osE
+gai
+cAH
+cAH
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(274,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+aaa
+aaa
+cuC
+cuC
+jPq
+xgm
+aqK
+cuC
+uiR
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+oee
+aPw
+aHe
+tqB
+eky
+eky
+atg
+aBE
+ouB
+eky
+eky
+gwu
+aHe
+aPw
+oee
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+kMK
+bYn
+hTF
+rTJ
+tAq
+bYn
+bYn
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aKQ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aak
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+hlz
+hlz
+hlz
+hlz
+bhB
+heg
+mKX
+aut
+aut
+aut
+aut
+aut
+riA
+heg
+bhB
+cAH
+cAH
+cAH
+cAH
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(275,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cuC
+uMc
+uMc
+uMc
+cuC
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+jbq
+aNe
+avu
+eky
+eky
+esT
+nYE
+orH
+eky
+eky
+aMU
+aNe
+jbq
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+bYn
+pql
+pql
+pql
+bYn
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aKQ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+wVb
+wVb
+gcK
+jPf
+jPf
+bhB
+dVZ
+jyi
+bPe
+bQm
+wlj
+bQm
+bTp
+jyi
+cDj
+bhB
+vuR
+vuR
+woG
+vTK
+vTK
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(276,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+jbq
+atY
+avu
+eky
+eky
+bAe
+aBG
+sGh
+eky
+eky
+aMU
+atY
+jbq
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+aag
+wVb
+hlz
+eFH
+uzg
+bhB
+bhB
+bhB
+bhB
+bhB
+bhB
+bhB
+bhB
+bhB
+bhB
+bhB
+cAH
+cAH
+cAH
+vTK
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(277,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+aPw
+qpU
+aqJ
+dqj
+eky
+xaS
+ejt
+mPf
+eky
+gUV
+aqp
+qpU
+aPw
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+aag
+wVb
+hlz
+eFH
+hlz
+eFH
+wul
+hlz
+gnz
+eFH
+eFH
+vuR
+hOe
+cAH
+fXd
+vuR
+vuR
+vuR
+cAH
+vTK
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(278,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aad
+aPw
+jbq
+aPw
+vgD
+eky
+atg
+aBE
+ouB
+eky
+ihX
+aPw
+jbq
+aPw
+ajZ
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aad
+aag
+aag
+aag
+aag
+wVb
+wVb
+rdK
+rdK
+rdK
+rdK
+bOn
+rdK
+rdK
+rdK
+haq
+haq
+xnl
+haq
+haq
+haq
+haq
+vTK
+vTK
+aag
+aag
+aag
+aag
+ajZ
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(279,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aae
+aah
+aag
+jbq
+iaR
+aBu
+aBu
+aBu
+aBu
+aBu
+iub
+jbq
+aag
+aah
+afm
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+bdH
+aae
+aah
+aah
+aah
+aah
+wVb
+wVb
+bdo
+bdo
+bLg
+bMX
+bOo
+uvG
+dSs
+bOo
+otX
+cII
+koT
+tZF
+bUZ
+ovn
+ovn
+vTK
+vTK
+aah
+aah
+aah
+aah
+afm
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(280,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aad
+aPw
+aPw
+jbq
+jbq
+jbq
+jbq
+jbq
+aPw
+aPw
+ajZ
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+vhe
+fEN
+cqm
+gTH
+qit
+rna
+qQS
+gwn
+pfT
+jYR
+dyp
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+qsF
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+bjy
+aXQ
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(281,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aae
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+afm
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+sbJ
+sbJ
+sbJ
+daz
+jtj
+avK
+avK
+sKY
+avK
+bIp
+fKe
+dDp
+dDp
+frM
+lcg
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(282,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+daz
+daz
+daz
+daz
+tte
+hvw
+auf
+pmV
+xDC
+xDC
+dIn
+rby
+bIp
+euN
+sEK
+sEK
+mlb
+lcg
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(283,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+daz
+daz
+hRW
+asZ
+vXh
+daz
+daz
+kfU
+daz
+rna
+rna
+lnS
+uVv
+yit
+rna
+cxc
+kBy
+kBy
+gfu
+fPB
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wVb
+bhD
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+bCR
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(284,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+xVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+daz
+daz
+scS
+yaZ
+ffE
+hZj
+clw
+daz
+daz
+daz
+sGZ
+rna
+rna
+roH
+ebN
+ebN
+ebN
+daz
+wnh
+wnh
+daz
+daz
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+wVb
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(285,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+daz
+acJ
+ubA
+cck
+wyQ
+fmv
+ubA
+gMN
+mRn
+itf
+mHE
+vAU
+qwJ
+fJY
+kzT
+wkM
+oLm
+fcX
+kKv
+kKv
+dGl
+dGl
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+wVb
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(286,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+daz
+cwS
+ffE
+whm
+wpw
+ffE
+ffE
+ffE
+jqP
+cLo
+vfB
+viB
+dIi
+qLS
+vfB
+wkM
+jvB
+jvB
+ieF
+ieF
+pJR
+gPr
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+wVb
+qsF
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+ovn
+ovn
+ovn
+ovn
+ovn
+ovn
+aXQ
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(287,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+daz
+oRV
+ydI
+mdW
+jaH
+awu
+ydI
+aKs
+fMt
+gOs
+kXj
+pYi
+fMl
+gUN
+bLv
+wkM
+xvM
+osy
+cBm
+cBm
+iZw
+dQl
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+wVb
+bdo
+jbB
+bdo
+bne
+bdo
+jbB
+bdo
+bne
+ovn
+gXv
+ovn
+grX
+ovn
+gXv
+ovn
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(288,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+daz
+daz
+eKJ
+yaZ
+ffE
+hZj
+mUC
+daz
+daz
+daz
+tHu
+rna
+rna
+gXs
+ebN
+ebN
+ebN
+daz
+wnh
+wnh
+daz
+daz
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+wVb
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+vTK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(289,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+daz
+daz
+ocB
+nJH
+rnH
+daz
+daz
+sTV
+daz
+rna
+rna
+gbg
+uVv
+erN
+rna
+qQS
+kBy
+kBy
+gfu
+kBy
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(290,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+daz
+daz
+daz
+daz
+tte
+hvw
+auf
+hTl
+xDC
+xDC
+yaQ
+bat
+mFN
+kSy
+dDp
+dDp
+frM
+lcg
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(291,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+sbJ
+sbJ
+sbJ
+daz
+jtj
+avK
+avK
+aCd
+avK
+mFN
+igr
+sEK
+sEK
+mlb
+lcg
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(292,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+avK
+bRo
+wyv
+pTt
+gAe
+rCi
+iAi
+mUz
+our
+rna
+cxc
+kBy
+kBy
+khJ
+gyN
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(293,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+daz
+czG
+ylg
+ylg
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+daz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(294,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+lmz
+daz
+daz
+daz
+daz
+daz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(295,1,1) = {"
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aak
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+"}
+(296,1,1) = {"
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+lmz
+bdH
+bdH
+bdH
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+"}
+(297,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aKQ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(298,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aKQ
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+bdH
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(299,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+jRz
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aak
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(300,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
diff --git a/maps/map_files/derelict_almayer/sprinkles/.gitkeep b/maps/map_files/derelict_almayer/sprinkles/.gitkeep
new file mode 100644
index 0000000000..8b13789179
--- /dev/null
+++ b/maps/map_files/derelict_almayer/sprinkles/.gitkeep
@@ -0,0 +1 @@
+
diff --git a/maps/map_files/generic/Admin_level.dmm b/maps/map_files/generic/Admin_level.dmm
index 43b3d26ec3..88182faf3b 100644
--- a/maps/map_files/generic/Admin_level.dmm
+++ b/maps/map_files/generic/Admin_level.dmm
@@ -662,7 +662,7 @@
/turf/open/space/transit/east/shuttlespace_ew8,
/area/space)
"qu" = (
-/obj/structure/transmitter/hidden{
+/obj/structure/phone_base/hidden{
dir = 8;
name = "Station Telephone";
phone_id = "Unknown Signal";
diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm
index 7521c75750..fbc55b0e38 100644
--- a/maps/map_files/golden_arrow/golden_arrow.dmm
+++ b/maps/map_files/golden_arrow/golden_arrow.dmm
@@ -8,19 +8,37 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"af" = (
/obj/structure/machinery/light{
dir = 8
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"ag" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"ah" = (
+/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)
"al" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -28,7 +46,25 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"an" = (
+/obj/structure/closet/emcloset,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"aq" = (
+/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)
"ar" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
@@ -36,13 +72,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"aw" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 9;
+ pixel_y = 29
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
"ax" = (
/obj/structure/cargo_container/arious/mid,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ay" = (
/obj/structure/sign/safety/restrictedarea{
pixel_x = 12;
@@ -55,7 +98,16 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"aA" = (
+/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/supply)
"aB" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
@@ -63,7 +115,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"aG" = (
+/obj/structure/largecrate/supply/supplies/tables_racks,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"aI" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -80,7 +138,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"aJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -92,12 +150,12 @@
pixel_y = 3
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"aN" = (
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"aQ" = (
/obj/structure/sign/safety/galley{
pixel_y = 29
@@ -105,7 +163,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"aS" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 17"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"aT" = (
/obj/structure/machinery/computer/cameras/almayer/vehicle{
dir = 4;
@@ -117,10 +181,28 @@
layer = 2.97;
name = "Tactical Map Display";
pixel_x = -17;
- pixel_y = 14
+ pixel_y = 14;
+ density = 0
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"aX" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/supply)
+"ba" = (
+/obj/item/tool/warning_cone{
+ pixel_x = 4;
+ pixel_y = 16
+ },
+/obj/item/stool,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/synthcloset)
"bb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -129,24 +211,37 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"bf" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"bg" = (
+/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)
"bh" = (
/obj/effect/landmark/start/marine/leader/alpha,
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"bo" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"bq" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -163,13 +258,23 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"bu" = (
+/obj/structure/machinery/camera/autoname/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"bw" = (
/obj/structure/curtain/red,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"by" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -177,7 +282,31 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"bB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
+"bD" = (
+/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"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/platoon_commander_rooms)
"bG" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -221,7 +350,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
+"bO" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
+ req_one_access = list()
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"bQ" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
@@ -229,7 +364,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"bR" = (
/obj/structure/bed/chair/comfy,
/obj/effect/decal/warning_stripes{
@@ -240,7 +375,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"bS" = (
/obj/structure/platform/stair_cut/alt,
/obj/structure/stairs/perspective{
@@ -252,10 +387,29 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"bZ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
"ca" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"cj" = (
+/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)
"cl" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
@@ -264,12 +418,12 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"co" = (
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/supply)
"cp" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -280,20 +434,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"cr" = (
/obj/effect/landmark/start/marine/alpha,
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"cs" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"ct" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -305,7 +459,18 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"cw" = (
+/obj/structure/machinery/computer/atmos_alert{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"cy" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -314,7 +479,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"cz" = (
/obj/structure/machinery/disposal{
density = 0;
@@ -324,21 +489,24 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"cA" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/magazine/boots/n054{
pixel_x = 29
},
-/obj/structure/closet/secure_closet/smartgunner,
+/obj/structure/closet/secure_closet/smartgunner{
+ req_access_txt = "14;40";
+ req_one_access = list()
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"cB" = (
/obj/structure/machinery/camera/autoname/almayer,
/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
"cD" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/drinks/coffeecup/wy{
@@ -348,14 +516,26 @@
pixel_y = 8
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"cG" = (
+/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)
"cH" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/med_data/laptop,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"cJ" = (
/obj/structure/bed/chair/office/light{
dir = 1
@@ -363,31 +543,32 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"cL" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"cR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"cS" = (
/obj/structure/machinery/door/airlock/almayer/medical{
name = "\improper Platoon Medic Office";
- req_one_access = list()
+ req_one_access = list();
+ req_one_access_txt = "8"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"cT" = (
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"cU" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -400,13 +581,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"cZ" = (
/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"dd" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -414,13 +595,40 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"de" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
+"dg" = (
+/obj/structure/machinery/portable_atmospherics/powered/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"di" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"dj" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = 30
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"dl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/safety/coffee{
@@ -430,7 +638,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"dm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -439,7 +647,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"dn" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -451,11 +659,23 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"dr" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"ds" = (
+/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)
"dt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -463,7 +683,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"dv" = (
/obj/structure/machinery/light{
dir = 1
@@ -471,7 +691,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"dA" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
@@ -479,7 +699,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"dB" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 1
@@ -487,7 +707,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"dE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/light{
@@ -496,7 +716,7 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"dG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -505,17 +725,17 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"dH" = (
/obj/item/bedsheet/brown,
/obj/structure/bed,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"dJ" = (
/turf/open/floor/plating,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"dO" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -525,40 +745,31 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"dP" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
-"dS" = (
-/obj/structure/machinery/power/fusion_engine{
- name = "\improper S-52 fusion reactor 4"
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/engineering)
+/area/golden_arrow/hangar)
"dX" = (
/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"ea" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"eo" = (
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"eu" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -568,26 +779,59 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"ey" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ dir = 8;
+ req_one_access = list(36);
+ name = "\improper Synthetic Preperations"
+ },
+/obj/structure/machinery/door/poddoor/almayer/closed{
+ dir = 4;
+ indestructible = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/synthcloset)
+"eB" = (
+/obj/structure/prop/almayer/computers/sensor_computer1,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"eH" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"eJ" = (
/obj/structure/machinery/power/apc/almayer,
/obj/structure/surface/table/reinforced/prison,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"eL" = (
/obj/structure/machinery/cryopod/right,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"eR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -597,18 +841,38 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"eT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/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 = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
"eU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"eY" = (
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"fe" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -619,7 +883,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ff" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -632,13 +896,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"fg" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer/uscm/directional{
dir = 10
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"fh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -647,7 +911,7 @@
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"fl" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
@@ -655,7 +919,11 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"fm" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
+/area/golden_arrow/engineering)
"fo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -669,7 +937,38 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"fp" = (
+/obj/structure/closet/secure_closet/engineering_welding{
+ req_one_access = list()
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"fq" = (
+/obj/structure/machinery/conveyor{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supply)
+"fv" = (
+/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)
"fx" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -681,7 +980,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"fy" = (
/obj/structure/platform,
/obj/structure/stairs/perspective{
@@ -695,7 +994,17 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"fF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"fJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/invuln/overhead_pipe{
@@ -708,14 +1017,14 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"fL" = (
/obj/structure/surface/table/almayer,
/obj/item/device/megaphone,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"fO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -725,12 +1034,13 @@
/obj/structure/machinery/door/airlock/almayer/medical{
dir = 1;
name = "\improper Medical Subsection";
- req_one_access = list()
+ req_one_access = list();
+ req_one_access_txt = "8"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"fX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -740,26 +1050,27 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"fY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/medical/no_access,
+/obj/structure/machinery/cm_vending/sorted/medical/blood{
+ req_access = list()
+ },
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"gd" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"gf" = (
-/obj/structure/closet/toolcloset,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
-/area/almayer/engineering)
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"gg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -772,7 +1083,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"gh" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
@@ -781,7 +1092,17 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"gn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/surgical{
+ pixel_x = -30
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/synthcloset)
"gp" = (
/obj/structure/surface/rack,
/obj/effect/decal/warning_stripes{
@@ -791,20 +1112,38 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"gq" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
pixel_x = 1
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"gz" = (
-/obj/structure/ship_ammo/rocket/widowmaker,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/area/golden_arrow/prep_hallway)
+"gt" = (
+/obj/structure/machinery/power/monitor{
+ name = "Core Power Monitoring"
},
-/area/almayer/hallways/hangar)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"gx" = (
+/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)
+"gz" = (
+/obj/structure/ship_ammo/rocket/widowmaker,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
"gA" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -813,7 +1152,11 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"gB" = (
+/obj/structure/machinery/telecomms/relay/preset/tower,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"gD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -821,19 +1164,20 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"gE" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/supply)
"gG" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/medical/blood{
- req_access = list()
- },
+/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"gH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/power/apc/almayer{
@@ -842,7 +1186,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"gL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
@@ -851,14 +1195,38 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"gM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"gS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/prep_hallway)
+"gT" = (
+/obj/structure/machinery/conveyor{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supply)
+"gW" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"ha" = (
/obj/structure/machinery/light{
dir = 8
@@ -867,13 +1235,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"he" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"hk" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -882,7 +1250,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ho" = (
/obj/structure/machinery/autodoc_console{
dir = 1;
@@ -891,7 +1259,27 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"hq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"hy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"hA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -899,7 +1287,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"hC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -915,11 +1303,11 @@
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"hF" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"hG" = (
/obj/structure/machinery/medical_pod/autodoc{
dir = 1;
@@ -928,7 +1316,26 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"hL" = (
+/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)
"hN" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/secure_data{
@@ -937,7 +1344,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"hR" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -954,10 +1361,28 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"hS" = (
/turf/closed/wall/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"hU" = (
+/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)
"hW" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger,
@@ -965,7 +1390,22 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"ie" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"if" = (
+/obj/structure/reagent_dispensers/fueltank/custom,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"ik" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -979,7 +1419,17 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"il" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"ip" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -995,7 +1445,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"iy" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -1010,12 +1460,12 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"iA" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/flashlight/lamp,
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"iC" = (
/obj/structure/sign/safety/security{
pixel_x = 15;
@@ -1029,7 +1479,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"iE" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -1042,18 +1492,24 @@
pixel_y = 13
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"iF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"iG" = (
/obj/structure/machinery/door/poddoor/almayer/open,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/prep_hallway)
"iK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"iL" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -1067,17 +1523,40 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"iN" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"iQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"iR" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"iX" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 14;
+ pixel_y = 29
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"jb" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -1092,13 +1571,13 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"jc" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"je" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -1111,7 +1590,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"jf" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -1119,7 +1598,7 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"jg" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -1127,7 +1606,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"jj" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -1138,7 +1617,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"jl" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -1147,7 +1626,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"js" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -1160,7 +1639,25 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"jy" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/computer/station_alert{
+ dir = 8;
+ pixel_x = 15;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/synthcloset)
+"jD" = (
+/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)
"jG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -1179,7 +1676,15 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"jN" = (
+/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)
"jO" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -1191,7 +1696,19 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"jQ" = (
+/obj/structure/machinery/pipedispenser,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
+"jS" = (
+/obj/structure/machinery/power/terminal{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"jU" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -1203,7 +1720,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"jV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -1224,18 +1741,45 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"kg" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"kh" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/belt/utility/full,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"kk" = (
+/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)
"km" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"kq" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -1245,7 +1789,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"kr" = (
/obj/structure/machinery/cryopod/right,
/obj/structure/machinery/light{
@@ -1254,29 +1798,48 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"kw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
"kB" = (
-/obj/structure/machinery/door/airlock/almayer/engineering{
- name = "\improper Engineering Hallway";
- req_one_access = list()
+/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)
+"kF" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/reagentgrinder/industrial{
+ pixel_y = 9
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"kH" = (
-/obj/structure/machinery/power/fusion_engine{
- name = "\improper S-52 fusion reactor 1"
+/obj/structure/machinery/computer/cryopod{
+ dir = 1
},
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "test_floor5"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"kI" = (
/obj/structure/machinery/light{
dir = 8
@@ -1285,14 +1848,24 @@
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"kO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"kS" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/supply)
"kU" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/structure/machinery/floodlight/landing,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"kV" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -1303,7 +1876,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"kX" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -1322,43 +1895,40 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"lc" = (
/obj/structure/closet/cryo,
/obj/structure/closet/cryo,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"ld" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light{
- unacidable = 1;
- unslashable = 1
- },
+/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"lg" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
"lh" = (
/obj/structure/machinery/floodlight/landing,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"lm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"lo" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -1366,12 +1936,16 @@
pixel_y = 1
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"ly" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
+"lA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"lB" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -1383,14 +1957,14 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"lE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
"lG" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -1398,7 +1972,16 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"lK" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/atmos_alert{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"lQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/firealarm{
@@ -1407,7 +1990,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"lS" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight/lamp/on{
@@ -1416,14 +1999,24 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
-"lW" = (
+/area/golden_arrow/platoon_sergeant)
+"lV" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad,
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
+ req_access = list();
+ req_one_access_txt = "8;12;39"
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_one)
+"mb" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 4;
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/supply)
"mc" = (
/obj/structure/bed{
can_buckle = 0
@@ -1434,16 +2027,17 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"me" = (
/obj/structure/machinery/door/airlock/almayer/command/reinforced{
dir = 1;
- name = "\improper Briefing Room"
+ name = "\improper Briefing Room";
+ req_access = list()
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"mf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -1453,33 +2047,41 @@
pixel_y = 12
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"mk" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "cargo_arrow"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"ml" = (
/obj/structure/ship_ammo/minirocket,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"mm" = (
/obj/structure/cargo_container/lockmart/mid{
layer = 3.1;
pixel_y = 5
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"mo" = (
+/obj/structure/surface/rack,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
"ms" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
dir = 4;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"mB" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -1491,26 +2093,28 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"mD" = (
-/obj/structure/machinery/door/airlock/almayer/generic,
+/obj/structure/machinery/door/airlock/almayer/generic{
+ req_one_access_txt = "8;12;39"
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"mR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"mW" = (
/obj/structure/machinery/landinglight/ds1,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"mY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -1524,15 +2128,23 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"mZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/supply)
"nb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Squad Two Armoury"
+ name = "\improper Squad Two Armoury";
+ req_one_access_txt = "8;12;40"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"nd" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -1545,7 +2157,18 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"ng" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light,
+/obj/structure/largecrate,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"ni" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair/comfy/alpha{
@@ -1554,7 +2177,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"nj" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -1589,50 +2212,97 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
+"nm" = (
+/obj/structure/prop/invuln/lifeboat_hatch_placeholder{
+ layer = 2.1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
"ns" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/cryo,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"nx" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
-"nG" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
-"nH" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"nK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/area/golden_arrow/supply)
+"ny" = (
+/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/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"nD" = (
+/obj/structure/machinery/conveyor{
+ dir = 8
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
+"nF" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"nG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/squad_one)
+"nK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"nM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/reinforced/almayer_B,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"nN" = (
/obj/structure/largecrate/random/secure,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"nR" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -1641,7 +2311,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"nT" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
@@ -1658,7 +2328,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"nV" = (
/obj/structure/machinery/light{
dir = 1
@@ -1667,13 +2337,13 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"nY" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 1
},
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"oa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair/comfy/alpha{
@@ -1682,7 +2352,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"oe" = (
/obj/structure/sign/safety/bulkhead_door{
pixel_y = -29
@@ -1690,7 +2360,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"og" = (
/obj/structure/machinery/light{
dir = 1
@@ -1698,19 +2368,35 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"oh" = (
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"ol" = (
+/obj/effect/landmark/observer_start,
/turf/open/floor/almayer/uscm/directional{
dir = 8;
icon_state = "logo_c"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"oo" = (
+/obj/structure/closet/secure_closet/engineering_electrical{
+ req_one_access = list()
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"or" = (
+/obj/structure/machinery/conveyor,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supply)
"ot" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/m41aMK1{
@@ -1723,13 +2409,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"ou" = (
/turf/open/floor/almayer_hull{
dir = 1;
icon_state = "outerhull_dir"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ov" = (
/obj/structure/machinery/light{
dir = 1
@@ -1739,7 +2425,7 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"oA" = (
/obj/structure/machinery/shower{
dir = 8
@@ -1747,7 +2433,31 @@
/obj/structure/machinery/door/window/westleft,
/obj/structure/window/reinforced/tinted/frosted,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"oB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/computer/supply_drop_console/limited{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "sensor_comp2";
+ layer = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
+"oC" = (
+/obj/structure/plasticflaps,
+/obj/structure/machinery/conveyor{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
"oH" = (
/obj/structure/machinery/light{
dir = 4
@@ -1755,7 +2465,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"oJ" = (
/obj/structure/machinery/medical_pod/bodyscanner{
pixel_y = 6
@@ -1763,13 +2473,13 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"oK" = (
/obj/structure/machinery/door/poddoor/almayer/open,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/prep_hallway)
"oL" = (
/obj/structure/platform_decoration{
dir = 8
@@ -1783,7 +2493,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"oM" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -1796,7 +2506,14 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"oO" = (
+/obj/structure/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"oQ" = (
/obj/item/prop/helmetgarb/gunoil{
pixel_x = 7;
@@ -1815,17 +2532,36 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"oW" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"oX" = (
+/obj/structure/largecrate/supply/generator,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"pf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/item/ammo_box/magazine/heap/empty,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"pl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"pt" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
dir = 4;
@@ -1834,7 +2570,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"pw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/invuln/lattice_prop{
@@ -1844,13 +2580,13 @@
pixel_y = -15
},
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"pB" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"pD" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -1859,11 +2595,11 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"pF" = (
/obj/structure/bed/chair,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"pG" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -1876,11 +2612,11 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"pJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall/almayer/outer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"pO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -1891,26 +2627,44 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"pR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"pS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/suit_storage_unit/carbon_unit,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
"pW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"pZ" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"qa" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"qc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
"qf" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -1918,7 +2672,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"qh" = (
/obj/structure/machinery/light{
dir = 4
@@ -1926,21 +2680,12 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"qi" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
-"qj" = (
-/obj/structure/machinery/power/fusion_engine{
- name = "\improper S-52 fusion reactor 2"
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/engineering)
+/area/golden_arrow/hangar)
"qm" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -1949,13 +2694,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
-"qp" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"qu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
@@ -1964,22 +2703,41 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"qv" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 8
},
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"qw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"qz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 16
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"qA" = (
/turf/closed/wall/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"qD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster{
@@ -1997,7 +2755,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"qI" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
@@ -2006,38 +2764,42 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"qQ" = (
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"qR" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"qT" = (
/turf/open/floor/almayer/uscm/directional{
dir = 9
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"qU" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
-"qZ" = (
-/obj/structure/machinery/power/fusion_engine{
- name = "\improper S-52 fusion reactor 3"
+/area/golden_arrow/platoon_commander_rooms)
+"qW" = (
+/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{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"rb" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -2045,13 +2807,13 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"rd" = (
/obj/structure/closet/cryo,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"rf" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
@@ -2060,7 +2822,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"rh" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -2069,23 +2831,45 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"rk" = (
/obj/structure/cargo_container/arious/left,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"rl" = (
/turf/open/floor/almayer/uscm/directional{
dir = 1
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"ro" = (
+/obj/structure/largecrate/supply/supplies/water,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
+"rq" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"rr" = (
/turf/open/floor/almayer/uscm/directional{
dir = 5
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"rt" = (
+/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)
"rx" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -2096,13 +2880,13 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"ry" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"rA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/janitorialcart,
@@ -2113,13 +2897,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"rH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"rI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -2146,19 +2930,19 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"rJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"rM" = (
/obj/structure/cargo_container/wy/mid,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"rV" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer/uscm/directional,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"rX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -2168,12 +2952,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
-"rY" = (
-/turf/open/floor/almayer{
- icon_state = "bluefull"
- },
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/dorms)
"rZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -2185,26 +2964,26 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"sa" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/supply)
"sc" = (
/obj/structure/pipes/vents/scrubber,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"sf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"sg" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Dorms"
@@ -2213,7 +2992,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"sk" = (
/obj/structure/machinery/power/apc/almayer{
dir = 8
@@ -2221,19 +3000,19 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"sm" = (
/turf/open/floor/almayer/uscm/directional{
dir = 6
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"so" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"sv" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -2243,7 +3022,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"sy" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -2256,20 +3035,19 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"sC" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/squads/alpha/platoon_sergeant)
-"sI" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/living/cryo_cells)
-"sK" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
+/area/golden_arrow/platoon_sergeant)
+"sE" = (
+/obj/structure/machinery/power/smes/buildable,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/engineering)
+"sI" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/cryo_cells)
"sN" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -2281,23 +3059,23 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"sO" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"sR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"sS" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"sU" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -2312,19 +3090,39 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"sV" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"sX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/paper_bin/uscm{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/clipboard{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/item/tool/pen{
+ pixel_x = 12
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"sY" = (
/obj/structure/closet/secure_closet/personal/cabinet{
req_access = null
},
+/obj/item/clothing/suit/storage/jacket/marine/service,
+/obj/item/clothing/suit/storage/jacket/marine/service/tanker,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"ti" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -2337,23 +3135,28 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"to" = (
-/obj/structure/prop/invuln/lifeboat_hatch_placeholder,
+/obj/structure/prop/invuln/lifeboat_hatch_placeholder{
+ layer = 2.1
+ },
+/obj/structure/prop/invuln/lifeboat_hatch_placeholder{
+ layer = 2.1
+ },
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"tr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"tv" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_18"
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"ty" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/pdt_kit{
@@ -2361,24 +3164,42 @@
pixel_y = 9
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
-"tG" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/squad_two)
+"tA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/supply)
+"tB" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"tS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
+ req_access = list();
+ req_one_access_txt = "8;12;40"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/squad_two)
"tT" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"tV" = (
/obj/structure/ship_ammo/rocket/keeper,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"tX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/scrubber,
@@ -2388,7 +3209,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"ua" = (
/obj/item/tool/warning_cone{
pixel_y = 16
@@ -2396,13 +3217,13 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ub" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"ug" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -2412,7 +3233,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"um" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/firealarm{
@@ -2420,7 +3241,17 @@
},
/obj/structure/machinery/faxmachine/uscm/command/capt,
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"uo" = (
+/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/supply)
"up" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -2434,7 +3265,14 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"us" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"uu" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -2442,7 +3280,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"uw" = (
/obj/structure/machinery/light{
dir = 8
@@ -2450,25 +3288,25 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"uA" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"uF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/crew/alt,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"uG" = (
/obj/item/tool/warning_cone,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"uH" = (
/obj/structure/largecrate/random/case/small,
/obj/item/toy/deck{
@@ -2487,7 +3325,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"uO" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp{
@@ -2503,14 +3341,60 @@
pixel_y = 4
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"uQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
+"uS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"uX" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
"vb" = (
/obj/structure/surface/table/reinforced/almayer_B{
layer = 2.0;
pixel_x = 12
},
/turf/closed/wall/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"vc" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"vg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
"vk" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
@@ -2518,7 +3402,16 @@
dir = 8;
icon_state = "cargo_arrow"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"vo" = (
+/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)
"vp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -2530,7 +3423,7 @@
pixel_y = -15
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"vt" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -2538,7 +3431,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"vB" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -2549,22 +3442,71 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"vF" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/squads/alpha/squad_two)
-"vL" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -19
+/area/golden_arrow/squad_two)
+"vG" = (
+/obj/structure/machinery/power/terminal{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/pouch/electronics{
+ pixel_x = 6;
+ pixel_y = -1
},
-/area/almayer/hallways/port_hallway)
-"vN" = (
+/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)
+"vJ" = (
+/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)
+"vK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supply)
+"vL" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = -19
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/prep_hallway)
+"vN" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
pixel_x = -1;
@@ -2579,7 +3521,16 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"vP" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"vS" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -2591,30 +3542,23 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"vU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/grunt_rnr)
-"vY" = (
-/obj/structure/sign/safety/rewire{
- pixel_x = 14;
- pixel_y = 29
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
+/area/golden_arrow/dorms)
+"wa" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "S"
},
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/engineering)
"wc" = (
/obj/structure/machinery/door/airlock/almayer/command/reinforced{
name = "\improper Platoon Commander's Quarters"
@@ -2622,7 +3566,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"wd" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -2635,20 +3579,30 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"wi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"wl" = (
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"wn" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"wp" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"wx" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -2658,13 +3612,41 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"wz" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"wH" = (
+/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_y = -6;
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
+"wI" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"wJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light{
@@ -2678,7 +3660,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"wK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
@@ -2687,31 +3669,49 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"wN" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_x = -32
+ },
+/obj/item/book/manual/robotics_cyborgs{
+ pixel_y = 8
+ },
+/obj/item/tool/wirecutters,
+/obj/item/tool/weldingtool/hugetank,
+/obj/structure/surface/rack,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/synthcloset)
"wS" = (
/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"wV" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
- name = "\improper Platoon Sergeants Bunk"
+ name = "\improper Platoon Sergeant's Bunk";
+ req_one_access_txt = "12"
},
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"xf" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"xh" = (
/obj/structure/cargo_container/arious/right,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"xm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/firealarm{
@@ -2720,12 +3720,12 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"xx" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"xz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -2740,7 +3740,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"xB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -2754,7 +3754,18 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"xJ" = (
+/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)
"xK" = (
/obj/structure/machinery/light{
dir = 8
@@ -2769,7 +3780,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"xM" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -2778,7 +3789,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"xQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/safety/galley{
@@ -2787,29 +3798,59 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"xX" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/living/grunt_rnr)
-"xZ" = (
+/area/golden_arrow/dorms)
+"yc" = (
+/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)
+"ye" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/engineering)
+"yg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/supply_drop/echo,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
+/obj/structure/platform{
+ dir = 8
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor5"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/supply)
"yj" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
name = "ship-grade camera"
},
+/obj/structure/machinery/vending/walkman,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
+"yo" = (
+/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)
"ys" = (
/obj/structure/sign/safety/rewire{
pixel_x = 14;
@@ -2818,13 +3859,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"yt" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"yv" = (
/obj/structure/machinery/light{
dir = 4
@@ -2836,7 +3877,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"yx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/firealarm{
@@ -2845,14 +3886,23 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
+"yy" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
"yA" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/squad_sergeant,
+/obj/structure/closet/secure_closet/squad_sergeant{
+ req_access_txt = "32;39";
+ req_one_access = list()
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"yF" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -2862,7 +3912,21 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"yJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
"yL" = (
/obj/structure/closet/coffin/woodencrate,
/obj/item/storage/box/m94,
@@ -2875,7 +3939,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"yM" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/cholula{
@@ -2885,28 +3949,33 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"yO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"yT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"yU" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"yY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
/obj/structure/bed/chair,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"yZ" = (
/obj/structure/machinery/light{
dir = 1
@@ -2914,7 +3983,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"za" = (
/obj/structure/machinery/camera/autoname/almayer,
/obj/effect/decal/warning_stripes{
@@ -2924,7 +3993,26 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"zk" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_one_access = list();
+ req_one_access_txt = "8;12;39"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/squad_one)
+"zl" = (
+/obj/structure/machinery/power/smes/buildable,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"zn" = (
/obj/structure/machinery/light{
dir = 4
@@ -2939,7 +4027,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"zt" = (
/obj/structure/machinery/light{
dir = 8
@@ -2947,32 +4035,52 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"zy" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"zA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"zD" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"zG" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"zI" = (
+/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
},
-/area/almayer/engineering)
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"zJ" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
},
/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
"zK" = (
/obj/structure/pipes/vents/scrubber,
/obj/structure/sign/safety/bulkhead_door{
@@ -2982,7 +4090,22 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"zL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"zM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -2990,14 +4113,20 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"zV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/disposal,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"zY" = (
+/obj/structure/closet/secure_closet/engineering_electrical{
+ req_one_access = list()
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"zZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -3005,7 +4134,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Ad" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
name = "\improper Hangar Lockdown Blast Door"
@@ -3013,18 +4142,18 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Ap" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"As" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Aw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -3039,13 +4168,13 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/canteen)
"Ax" = (
/obj/structure/machinery/shower{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"AA" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -3053,7 +4182,20 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"AC" = (
+/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)
"AG" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
@@ -3062,13 +4204,10 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"AH" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/engineering)
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"AK" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -3077,32 +4216,40 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"AL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"AO" = (
+/obj/structure/machinery/autolathe,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"AP" = (
-/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal,
+/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{
+ layer = 2.1
+ },
/obj/structure/sign/safety/manualopenclose{
- layer = 4.3;
+ layer = 2.11;
pixel_x = 12;
pixel_y = 2
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"AQ" = (
/obj/structure/cargo_container/lockmart/right{
layer = 3.1;
pixel_y = 5
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
-"AW" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/flashlight/lamp,
-/obj/effect/spawner/random/toolbox,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/engineering)
+/area/golden_arrow/hangar)
"AY" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -3111,27 +4258,36 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"Bd" = (
+/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)
"Bf" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Bg" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Bh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/vending/coffee/simple,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Bi" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -3143,15 +4299,15 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Bj" = (
/obj/structure/window/framed/almayer/white,
/turf/open/floor/almayer,
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Bo" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Bq" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -3160,28 +4316,50 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Br" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"Bt" = (
+/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)
"Bu" = (
+/obj/item/ammo_magazine/sentry{
+ layer = 3.01
+ },
/obj/item/defenses/handheld/sentry,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
-"Bw" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/squad_one)
+"Bv" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
+ name = "Damage Control Locker";
+ req_one_access = list()
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
+"Bw" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/safety/rewire{
pixel_y = -29
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Bz" = (
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"BA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -3201,7 +4379,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"BM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
@@ -3211,7 +4389,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"BO" = (
/obj/structure/bed/chair{
dir = 1
@@ -3219,12 +4397,12 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"BP" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"BW" = (
/obj/structure/sign/safety/hazard{
pixel_x = -19;
@@ -3241,18 +4419,18 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"BY" = (
/obj/effect/landmark/start/marine/alpha,
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"BZ" = (
/obj/structure/machinery/light{
dir = 1
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"Cb" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze{
@@ -3275,21 +4453,39 @@
pixel_x = 5;
pixel_y = 4
},
+/obj/item/tool/hand_labeler{
+ pixel_x = -3;
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/dorms)
+"Ce" = (
+/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/almayer/living/grunt_rnr)
+/area/golden_arrow/engineering)
"Cf" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Cg" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Cl" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -3299,10 +4495,16 @@
dir = 4;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/hangar)
-"Cq" = (
-/turf/closed/wall/almayer/outer,
-/area/space)
+/area/golden_arrow/hangar)
+"Cn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"Cr" = (
/turf/open/space/basic,
/area/space)
@@ -3319,20 +4521,21 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Cu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Sergeants Room"
+ name = "\improper Sergeants Room";
+ req_one_access_txt = "12;32"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Cv" = (
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Cw" = (
/obj/structure/machinery/body_scanconsole{
pixel_y = 6
@@ -3340,7 +4543,22 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"Cy" = (
+/obj/structure/machinery/conveyor{
+ dir = 8
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"CC" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/flamer_tank,
@@ -3350,10 +4568,13 @@
pixel_y = 4
},
/obj/item/device/motiondetector,
+/obj/item/attachable/attached_gun/extinguisher/pyro{
+ layer = 3.01
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"CF" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -3369,7 +4590,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"CK" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -3378,7 +4599,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"CN" = (
/obj/structure/cargo_container/lockmart/left{
layer = 3.1;
@@ -3387,7 +4608,24 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"CP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"CX" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"CZ" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
@@ -3395,17 +4633,17 @@
shuttleId = "dropship_alamo"
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"Db" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall/almayer/outer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Dc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Df" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -3420,7 +4658,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Dg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3429,13 +4667,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
-"Dj" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/platoon_sergeant)
"Dl" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin{
@@ -3449,7 +4681,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Dw" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -3465,7 +4697,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Dx" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3485,7 +4717,7 @@
pixel_y = -4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"DB" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -3494,10 +4726,10 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"DC" = (
/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/supply)
"DE" = (
/obj/structure/machinery/light{
dir = 4
@@ -3506,7 +4738,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"DF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/alarm/almayer{
@@ -3515,52 +4747,43 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"DM" = (
/obj/structure/machinery/power/apc/almayer,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"DR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
-"DV" = (
-/obj/structure/machinery/door/airlock/almayer/command/reinforced{
- dir = 1;
- name = "\improper Platoon Commander's Office"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/squad_two)
"DX" = (
/obj/structure/toilet{
pixel_y = 16
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"DY" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Ea" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Eb" = (
/obj/structure/surface/table/reinforced/almayer_B,
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Ei" = (
/obj/structure/machinery/space_heater,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Eo" = (
/obj/structure/platform_decoration,
/obj/structure/platform_decoration{
@@ -3574,7 +4797,26 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"Ep" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"Er" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
"Eu" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -3582,20 +4824,37 @@
pixel_y = 2
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Ey" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
+"EA" = (
+/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)
+"EB" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"ED" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"EF" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
@@ -3605,7 +4864,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"EI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/scrubber,
@@ -3615,7 +4874,18 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"EJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"EK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname/almayer{
@@ -3626,7 +4896,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"EO" = (
/obj/structure/machinery/disposal{
density = 0;
@@ -3636,7 +4906,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"EQ" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -3666,7 +4936,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"EX" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -3675,7 +4945,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"EZ" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
@@ -3683,7 +4953,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Fa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -3698,7 +4968,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Fe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -3711,10 +4981,17 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"Ff" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"Fg" = (
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Fi" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/roller,
@@ -3722,10 +4999,11 @@
/obj/structure/machinery/light{
dir = 8
},
+/obj/item/storage/box/bodybags,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Fj" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3737,18 +5015,17 @@
},
/obj/item/facepaint/black,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Fl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"Fn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/area/golden_arrow/supply)
+"Fu" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
"Fw" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -3761,31 +5038,28 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Fy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Fz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/engineering)
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"FE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"FI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"FN" = (
/obj/structure/machinery/medical_pod/sleeper{
dir = 8;
@@ -3795,20 +5069,20 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"FP" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"FR" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"FS" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -3816,7 +5090,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"FT" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -3825,7 +5099,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"FV" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate{
@@ -3843,7 +5117,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"FW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
@@ -3856,7 +5130,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Gf" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/wooden_tv/prop{
@@ -3890,7 +5164,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Gg" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -3903,7 +5177,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Gi" = (
/obj/structure/sign/safety/ammunition{
pixel_x = 14;
@@ -3912,7 +5186,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Gk" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -3922,18 +5196,41 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"Gq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"Gs" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
-"Gx" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/hangar)
+"Gu" = (
+/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)
+"Gv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"Gy" = (
+/obj/structure/machinery/recharge_station,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"Gz" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -3942,13 +5239,22 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"GA" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"GG" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"GK" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -3970,7 +5276,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"GL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -3984,7 +5290,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"GN" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -3992,14 +5298,16 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
-"GP" = (
+/area/golden_arrow/hangar)
+"GO" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
+/obj/structure/sign/safety/synth_storage{
+ pixel_x = -20
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/prep_hallway)
"GQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -4007,14 +5315,51 @@
},
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"GU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio,
+/obj/item/device/lightreplacer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"GV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/golden_arrow/platoon_commander_rooms)
"GY" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"Hc" = (
+/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)
+"Hh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"Hj" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/CICmap{
@@ -4024,13 +5369,21 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"Hk" = (
+/obj/structure/closet/coffin/woodencrate,
+/obj/item/clothing/accessory/storage/droppouch,
+/obj/item/clothing/accessory/storage/droppouch,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/supply)
"Hm" = (
/obj/structure/bed/chair{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Hv" = (
/obj/item/frame/camera{
desc = "The Staff Officer insisted he needed to monitor everyone at all times.";
@@ -4049,33 +5402,26 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Hw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/obj/structure/machinery/door/airlock/almayer/generic,
+/obj/structure/machinery/door/airlock/almayer/generic{
+ req_one_access_txt = "8;12;40"
+ },
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/squad_two)
-"HC" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
-"HF" = (
-/obj/structure/machinery/light{
- dir = 8
+/area/golden_arrow/squad_two)
+"Hx" = (
+/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"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/engineering)
"HG" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -4087,7 +5433,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"HH" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -4100,32 +5446,23 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
-"HJ" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"HK" = (
/turf/closed/wall/almayer,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"HQ" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"HR" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "bluefull"
+ },
+/area/golden_arrow/hangar)
"HS" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
@@ -4134,7 +5471,14 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"HT" = (
+/obj/structure/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"HV" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
@@ -4142,7 +5486,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"HX" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -4157,17 +5501,36 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Ii" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"It" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{
+ dir = 1;
+ req_one_access = list();
+ autoname = 0
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"Iw" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"Iy" = (
+/obj/structure/computer3frame,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"IC" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -4176,13 +5539,13 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"ID" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"IE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -4194,14 +5557,37 @@
pixel_y = 10
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_two)
-"IN" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/area/golden_arrow/squad_two)
+"IP" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"IR" = (
+/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)
+"IS" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"IT" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -4213,20 +5599,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"IU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"IW" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"IX" = (
/obj/structure/machinery/light{
dir = 4
@@ -4238,20 +5624,29 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"IZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"Jb" = (
/obj/structure/machinery/cm_vending/clothing/medic/alpha,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Jc" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 2
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Jg" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/clipboard{
@@ -4260,7 +5655,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"Jk" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -4270,7 +5665,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Jn" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/drinks/cans/waterbottle{
@@ -4281,8 +5676,20 @@
pixel_x = -10;
pixel_y = 6
},
+/obj/item/tool/hand_labeler{
+ pixel_y = 14
+ },
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"Jp" = (
+/obj/structure/machinery/conveyor{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supply)
"Jq" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
@@ -4290,7 +5697,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Jv" = (
/obj/structure/machinery/light{
dir = 8
@@ -4298,13 +5705,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"JD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"JI" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
@@ -4314,7 +5721,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"JJ" = (
/obj/structure/machinery/sleep_console{
dir = 8;
@@ -4323,14 +5730,14 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"JP" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"JT" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
@@ -4339,7 +5746,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"JZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -4349,7 +5756,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Kd" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -4361,7 +5768,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Ke" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -4373,7 +5780,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ki" = (
/obj/structure/machinery/shower{
pixel_y = 16
@@ -4387,14 +5794,14 @@
health = 80
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Kl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/photocopier,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Kp" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/m41aMK1{
@@ -4407,23 +5814,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
-"Ks" = (
-/turf/open/floor/almayer{
- icon_state = "bluefull"
- },
-/area/almayer/hallways/hangar)
-"Kt" = (
-/obj/structure/machinery/power/smes/buildable,
+/area/golden_arrow/squad_one)
+"Ku" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_one_access = list();
+ req_one_access_txt = "8;12;40"
+ },
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/squad_two)
"Kv" = (
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Kx" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -4433,7 +5837,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"KD" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -4443,17 +5847,17 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"KH" = (
/obj/vehicle/powerloader,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"KK" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"KM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
@@ -4463,27 +5867,27 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"KO" = (
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"KP" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"KQ" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"KU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"KY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -4492,7 +5896,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"La" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"Ld" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -4532,42 +5942,35 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Lf" = (
/obj/effect/landmark/start/marine/tl/alpha,
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Lg" = (
/obj/docking_port/stationary/marine_dropship/almayer_hangar_1,
-/obj/effect/landmark/observer_start,
/turf/open/floor/plating,
-/area/almayer/hallways/hangar)
-"Lh" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
"Ll" = (
/obj/structure/ship_ammo/minirocket/incendiary,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ln" = (
/obj/structure/ship_ammo/rocket/banshee,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Lo" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ls" = (
/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{
density = 0
@@ -4578,7 +5981,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Lx" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
@@ -4586,14 +5989,21 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"LC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/supply)
"LE" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
name = "ship-grade camera"
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"LF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -4601,7 +6011,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"LH" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
@@ -4610,12 +6020,12 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"LJ" = (
/turf/open/floor/almayer/uscm/directional{
dir = 8
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"LK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair{
@@ -4624,12 +6034,12 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"LL" = (
/obj/effect/landmark/late_join/alpha,
/obj/effect/landmark/start/marine/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"LQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -4643,7 +6053,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"LS" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -4652,14 +6062,54 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"LT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"LZ" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"Mc" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"Md" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"Me" = (
/turf/closed/wall/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"Mf" = (
+/obj/effect/decal/cleanable/cobweb{
+ dir = 8
+ },
+/obj/item/notepad,
+/obj/item/maintenance_jack,
+/obj/structure/closet,
+/obj/item/tool/pen{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/storage/photo_album,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/synthcloset)
"Mi" = (
/obj/structure/machinery/light{
dir = 4
@@ -4667,20 +6117,47 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Mj" = (
/obj/structure/surface/table/reinforced/prison,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"Ml" = (
+/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)
"Mn" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"Mu" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{
+ req_one_access = list();
+ name = "\improper Engineering Airlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"MB" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
@@ -4691,20 +6168,20 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"MC" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"MI" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"MJ" = (
/obj/structure/machinery/light{
dir = 4
@@ -4712,22 +6189,47 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"MK" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"ML" = (
+/obj/structure/largecrate,
+/obj/structure/largecrate{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/supply)
"MN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"MW" = (
+/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)
"MZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Na" = (
/obj/structure/machinery/light{
dir = 1
@@ -4735,35 +6237,76 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Ne" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "cargo_arrow"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Nf" = (
/turf/closed/wall/almayer/white,
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Ng" = (
/obj/structure/machinery/light{
dir = 1
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Nk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"No" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
"Np" = (
/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Nr" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"Nx" = (
+/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)
+"Nz" = (
+/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)
"NB" = (
/obj/structure/sign/safety/cryo{
pixel_x = 6;
@@ -4777,17 +6320,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"ND" = (
/obj/structure/sign/safety/rewire{
pixel_x = 14;
pixel_y = 29
},
+/obj/item/ammo_magazine/sentry{
+ layer = 3.01
+ },
/obj/item/defenses/handheld/sentry,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"NE" = (
/obj/structure/machinery/light{
dir = 8
@@ -4805,13 +6351,22 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"NI" = (
+/obj/structure/machinery/cm_vending/clothing/synth/snowflake{
+ pixel_x = -30;
+ density = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/synthcloset)
"NO" = (
/obj/structure/bed/chair/comfy,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"NT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -4823,7 +6378,17 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"NU" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{
+ dir = 1;
+ req_one_access = list();
+ autoname = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
"NV" = (
/obj/structure/sign/safety/cryo{
pixel_x = 6;
@@ -4832,7 +6397,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"NZ" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
"Ob" = (
/obj/structure/platform{
dir = 4;
@@ -4846,48 +6417,63 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Oc" = (
-/obj/structure/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/machinery/power/terminal,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
},
-/area/almayer/engineering)
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
"Od" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
dir = 8;
icon_state = "cargo_arrow"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Oj" = (
/obj/structure/machinery/camera/autoname/almayer,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"Ol" = (
+/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)
"Os" = (
/obj/structure/bed/chair/comfy,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"Oz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
"OA" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"OC" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/light,
+/obj/item/device/cassette_tape/pop3{
+ pixel_y = 3
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"OG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/alarm/almayer{
@@ -4896,7 +6482,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"OH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
@@ -4906,7 +6492,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"OI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -4921,13 +6507,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"OJ" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ON" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
@@ -4936,18 +6522,38 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"OU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"OX" = (
/turf/open/floor/almayer/uscm/directional{
dir = 4
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"OY" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "req1"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/supply)
+"OZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"Pc" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -4973,7 +6579,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Pe" = (
/obj/structure/bed/chair/comfy,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -4984,7 +6590,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Pf" = (
/obj/structure/surface/table/almayer,
/obj/structure/bedsheetbin{
@@ -4993,7 +6599,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Ph" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -5003,7 +6609,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Pl" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -5011,7 +6617,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Pm" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/special{
@@ -5026,16 +6632,17 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Pp" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Squad One Armoury"
+ name = "\improper Squad One Armoury";
+ req_one_access_txt = "8;12;39"
},
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Pr" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -5045,14 +6652,29 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"Ps" = (
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 40;
+ pixel_x = 7;
+ pixel_y = 6
+ },
+/obj/structure/closet/crate/construction,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
"Pt" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Py" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
@@ -5061,7 +6683,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"PA" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/special{
@@ -5076,13 +6698,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"PF" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"PG" = (
/obj/structure/machinery/computer/arcade{
density = 0;
@@ -5091,7 +6713,15 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"PL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"PQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -5099,15 +6729,17 @@
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"PW" = (
/obj/structure/machinery/door/airlock/almayer/command/reinforced{
- name = "\improper Private Briefing Room"
+ name = "\improper Private Briefing Room";
+ req_access = list();
+ req_one_access_txt = "12;19;32"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"PY" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -5124,13 +6756,13 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"PZ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Qc" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/overwatch/almayer{
@@ -5139,17 +6771,17 @@
pixel_x = -17;
pixel_y = 16
},
-/obj/structure/transmitter/rotary/no_dnd{
- name = "Alpha Overwatch Telephone";
+/obj/structure/phone_base/rotary/no_dnd{
+ name = "Overwatch Telephone";
phone_category = "Command";
- phone_id = "Alpha Overwatch"
+ phone_id = "Overwatch"
},
/obj/item/clothing/glasses/hud/health{
pixel_x = -8;
pixel_y = 12
},
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"Qe" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5162,7 +6794,7 @@
current_mag = null
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Qi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/safety/conference_room{
@@ -5171,13 +6803,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Qk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ql" = (
/obj/structure/prop/invuln/lattice_prop{
icon_state = "lattice1";
@@ -5188,7 +6820,34 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"Qq" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{
+ req_one_access = list();
+ name = "\improper Engineering Airlock"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
+"Qt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/surface/table/almayer,
+/obj/item/tool/hand_labeler{
+ pixel_x = 4;
+ pixel_y = 11
+ },
+/obj/item/reagent_container/food/drinks/coffeecup/uscm{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"Qu" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -5204,10 +6863,10 @@
pixel_y = 16
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Qw" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Qx" = (
/obj/structure/sink{
dir = 4;
@@ -5217,7 +6876,16 @@
pixel_x = 28
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"Qz" = (
+/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)
"QD" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -5226,14 +6894,14 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"QE" = (
/obj/structure/machinery/chem_dispenser,
/obj/item/reagent_container/glass/beaker/bluespace,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"QI" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -5244,12 +6912,26 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"QJ" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"QL" = (
+/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)
"QM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -5260,23 +6942,30 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"QN" = (
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"QO" = (
/obj/structure/bed/chair/office/dark,
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
+"QP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/largecrate,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"QQ" = (
/obj/structure/toilet{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"QS" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -5287,7 +6976,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"QT" = (
/obj/structure/machinery/cryopod,
/obj/structure/machinery/light{
@@ -5296,7 +6985,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"QW" = (
/obj/structure/cargo_container/wy/left,
/obj/structure/sign/poster{
@@ -5314,7 +7003,7 @@
serial_number = 16
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"QX" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -5323,7 +7012,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Ra" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -5331,7 +7020,25 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"Rc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Supply Office"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
+"Rd" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
+/area/golden_arrow/supply)
"Rg" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5339,7 +7046,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Rh" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -5347,13 +7054,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
-"Rj" = (
-/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/platoon_sergeant)
"Rl" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/kitchen/tray{
@@ -5375,14 +7076,23 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Rr" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/hangar)
+"Rt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"Rv" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Rx" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin{
@@ -5392,7 +7102,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Ry" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -5414,31 +7124,88 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"RD" = (
/obj/effect/landmark/late_join,
/obj/effect/landmark/start/marine/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
-"RO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/squad_sergeant,
-/turf/open/floor/almayer{
+/area/golden_arrow/cryo_cells)
+"RK" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"RM" = (
+/obj/structure/closet/firecloset/full,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"RN" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = -5;
+ pixel_y = 10
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/stack/sheet/mineral/phoron/medium_stack{
+ desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care.";
+ pixel_y = -9
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"RO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/squad_sergeant{
+ req_access_txt = "32;40";
+ req_one_access = list()
+ },
+/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"RP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
"RT" = (
/obj/structure/machinery/landinglight/ds1/delayone,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"RW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"Sc" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Sd" = (
/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.";
@@ -5475,14 +7242,28 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Si" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"Sj" = (
+/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)
"Sl" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin{
@@ -5492,7 +7273,16 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"Sn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"So" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5501,7 +7291,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Sq" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5513,7 +7303,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Su" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/kitchen/tray{
@@ -5535,7 +7325,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Sw" = (
/obj/structure/machinery/shower{
dir = 1
@@ -5549,7 +7339,7 @@
health = 80
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Sy" = (
/obj/structure/machinery/disposal,
/obj/structure/machinery/camera/autoname/almayer{
@@ -5559,7 +7349,14 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"SB" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"SC" = (
+/turf/closed/wall/almayer/outer,
+/area/space)
"SL" = (
/obj/structure/machinery/light{
dir = 8
@@ -5567,11 +7364,11 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"SO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"SR" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -5580,7 +7377,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ST" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
@@ -5595,20 +7392,40 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"SV" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/prop/magazine/book/theartofwar,
+/obj/item/paper_bin/uscm{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/tool/pen{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
"SY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"Tc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/closed/wall/almayer/white,
+/area/golden_arrow/medical)
"Td" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Tg" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -5643,7 +7460,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Tj" = (
/obj/structure/filingcabinet/chestdrawer{
density = 0;
@@ -5658,7 +7475,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Tk" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -5687,7 +7504,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"To" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5696,7 +7513,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Tr" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -5704,7 +7521,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Tu" = (
/obj/structure/sign/safety/hazard{
pixel_x = -19;
@@ -5725,7 +7542,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Tx" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
@@ -5733,23 +7550,23 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ty" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Tz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/bed/chair{
dir = 8
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"TC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"TD" = (
/obj/item/tool/crowbar/red{
pixel_x = -13;
@@ -5771,28 +7588,37 @@
name = "lattice"
},
/turf/open/floor/plating,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"TI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger{
pixel_y = 5
},
-/obj/item/tool/hand_labeler{
- pixel_x = -3;
- pixel_y = 14
- },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
+"TK" = (
+/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)
"TN" = (
-/turf/closed/wall/almayer,
-/area/almayer/engineering)
+/turf/closed/wall/almayer/reinforced,
+/area/golden_arrow/engineering)
"TO" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"TP" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5805,12 +7631,18 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"TT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"TW" = (
+/obj/structure/machinery/recharge_station,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/synthcloset)
"TY" = (
/obj/structure/barricade/handrail{
dir = 1;
@@ -5820,7 +7652,7 @@
dir = 8;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Ub" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -5831,20 +7663,32 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"Uf" = (
+/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)
"Uh" = (
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Ui" = (
/turf/closed/wall/almayer,
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Uj" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"Uk" = (
/obj/structure/surface/table/almayer,
/obj/item/spacecash/c10{
@@ -5852,20 +7696,24 @@
pixel_y = 7
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
-"Uv" = (
+/area/golden_arrow/squad_one)
+"Um" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/cm_vending/clothing/synth{
+ pixel_x = -30;
+ density = 0
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor5"
},
-/area/almayer/living/cafeteria_port)
-"UA" = (
+/area/golden_arrow/synthcloset)
+"Uv" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/canteen)
"UI" = (
/obj/structure/surface/table/almayer,
/obj/item/device/cassette_tape/nam{
@@ -5874,7 +7722,7 @@
pixel_y = 7
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"UK" = (
/obj/structure/machinery/light{
dir = 4
@@ -5882,7 +7730,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"UN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/line_nexter{
@@ -5894,7 +7742,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"UO" = (
/obj/structure/bed/chair{
dir = 4
@@ -5903,7 +7751,7 @@
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"UT" = (
/obj/structure/machinery/disposal{
density = 0;
@@ -5913,7 +7761,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"UX" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5923,27 +7771,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
-"UZ" = (
-/obj/structure/machinery/telecomms/relay/preset/tower,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/engineering)
+/area/golden_arrow/hangar)
"Va" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Vc" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Ve" = (
/obj/structure/sink{
pixel_y = 24
@@ -5968,21 +7809,36 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Vj" = (
/turf/open/floor/almayer{
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"Vp" = (
/turf/closed/wall/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
+"Vq" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
"Vr" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"Vu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Supply Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
"Vv" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -5995,26 +7851,70 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"VJ" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "req1"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/supply)
"VK" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/smartgunner,
+/obj/structure/closet/secure_closet/smartgunner{
+ req_access_txt = "14;39";
+ req_one_access = list()
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"VL" = (
/obj/structure/closet/secure_closet/platoon_sergeant,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"VQ" = (
/obj/structure/machinery/disposal,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"VT" = (
+/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/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/storage/fancy/cigar{
+ pixel_x = 6
+ },
+/obj/item/ashtray/glass{
+ pixel_x = 11;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"VX" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -6028,7 +7928,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"Wf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -6040,7 +7940,7 @@
pixel_y = -15
},
/turf/open/floor/almayer,
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Wg" = (
/obj/structure/sign/safety/cryo{
pixel_x = 8;
@@ -6054,19 +7954,19 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"Wj" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Wl" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
pixel_x = -1
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Wm" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -6074,17 +7974,37 @@
pixel_y = 2
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
+"Wo" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 16
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"Wp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Wr" = (
/obj/structure/machinery/floodlight/landing,
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ws" = (
/obj/item/tool/warning_cone,
/obj/effect/decal/warning_stripes{
@@ -6094,13 +8014,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Wu" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Wv" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
@@ -6109,12 +8029,25 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
-"WJ" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/prop/magazine/book/theartofwar,
+/area/golden_arrow/hangar)
+"WA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/largecrate,
/turf/open/floor/almayer,
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/supply)
+"WG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/supply)
"WK" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/flamer{
@@ -6124,10 +8057,13 @@
/obj/item/ammo_magazine/flamer_tank,
/obj/item/ammo_magazine/flamer_tank,
/obj/item/device/motiondetector,
+/obj/item/attachable/attached_gun/extinguisher/pyro{
+ layer = 3.01
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"WP" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 4
@@ -6135,16 +8071,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
-/area/almayer/living/briefing)
-"WV" = (
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Hangar Lockdown Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/briefing)
"WY" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -6161,7 +8088,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Xa" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -6169,24 +8096,51 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"Xb" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/folder/yellow,
+/obj/item/book/manual/engineering_construction,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/engineering)
"Xc" = (
/obj/structure/machinery/shower{
pixel_y = 16
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Xd" = (
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"Xj" = (
+/obj/structure/pipes/vents/pump,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = -20
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
"Xs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Xv" = (
/obj/structure/sign/safety/rewire{
pixel_x = 14;
@@ -6195,7 +8149,7 @@
/turf/open/floor/almayer{
icon_state = "bluefull"
},
-/area/almayer/living/platoon_commander_rooms)
+/area/golden_arrow/platoon_commander_rooms)
"Xw" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -6208,7 +8162,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Xy" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -6225,20 +8179,20 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Xz" = (
/obj/structure/foamed_metal,
/turf/open/floor/plating,
-/area/almayer/hallways/hangar)
+/area/space)
"XI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"XJ" = (
/turf/closed/wall/almayer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"XL" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = -7;
@@ -6263,7 +8217,23 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"XN" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/engineering)
+"XP" = (
+/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)
"XQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -6272,7 +8242,7 @@
dir = 8;
icon_state = "cargo_arrow"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"XR" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -6288,20 +8258,14 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Ya" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/squads/alpha/squad_two)
-"Yb" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/squad_two)
"Yc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/largecrate/supply/ammo/m41amk1,
@@ -6312,7 +8276,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"Yd" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -6320,29 +8284,52 @@
},
/obj/item/folder/black_random,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
+"Ye" = (
+/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)
"Yh" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
/turf/open/floor/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Yj" = (
/turf/closed/wall/almayer,
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
+"Yl" = (
+/obj/structure/machinery/cm_vending/gear/synth{
+ pixel_x = -30;
+ density = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/synthcloset)
"Ym" = (
/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Yp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
"Ys" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate,
@@ -6361,8 +8348,18 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
-"Yw" = (
+/area/golden_arrow/canteen)
+"Yv" = (
+/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)
+"Yw" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
dir = 4;
name = "\improper Hangar Lockdown Blast Door"
@@ -6370,7 +8367,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Yx" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate{
@@ -6388,7 +8385,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"YA" = (
/obj/structure/machinery/light{
dir = 1
@@ -6398,10 +8395,10 @@
dir = 8;
icon_state = "cargo_arrow"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"YB" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"YG" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -6415,7 +8412,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"YK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/firealarm{
@@ -6429,15 +8426,41 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
+"YO" = (
+/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)
"YP" = (
/turf/closed/wall/almayer/outer,
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
+"YQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
"YX" = (
/obj/effect/landmark/start/marine/medic/alpha,
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"Zb" = (
/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.";
@@ -6450,18 +8473,26 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"Zd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
"Zf" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"Zk" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Zl" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -6470,7 +8501,13 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/squad_two)
+/area/golden_arrow/squad_two)
+"Zw" = (
+/obj/structure/largecrate/supply/generator,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/engineering)
"ZB" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop{
@@ -6479,38 +8516,55 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/squads/alpha/platoon_sergeant)
+/area/golden_arrow/platoon_sergeant)
"ZC" = (
/turf/closed/wall/almayer,
-/area/almayer/squads/alpha/squad_one)
+/area/golden_arrow/squad_one)
"ZI" = (
/obj/effect/landmark/start/marine/smartgunner/alpha,
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"ZJ" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/synthcloset)
"ZL" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"ZM" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"ZR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/chem_master,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
+"ZU" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
"ZV" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
+"ZX" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/cameras/engineering{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
(1,1,1) = {"
Cr
@@ -13433,12 +15487,12 @@ Cr
Cr
Cr
Cr
-ca
-ca
-ca
-ca
-ca
-ca
+SC
+SC
+SC
+sC
+sC
+sC
sC
sC
sC
@@ -13585,11 +15639,11 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
-ca
+sC
+sC
VL
sC
sC
@@ -13737,10 +15791,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
Ls
KQ
sC
@@ -13889,10 +15943,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
sC
Uj
sC
@@ -14024,7 +16078,7 @@ Ln
So
KO
KO
-tG
+Rr
Kx
tV
ca
@@ -14041,10 +16095,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
lS
KQ
bw
@@ -14068,7 +16122,7 @@ Yp
Fg
Fg
gd
-xZ
+tS
Qw
Cr
Cr
@@ -14174,7 +16228,7 @@ wz
ca
Xd
UX
-tG
+Rr
Ea
KO
Kx
@@ -14182,7 +16236,7 @@ Xd
ca
ml
UX
-tG
+Rr
Ea
KO
kV
@@ -14193,10 +16247,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
mc
KQ
bw
@@ -14220,7 +16274,7 @@ IE
ty
Fg
Fg
-lW
+Ku
Qw
Cr
Cr
@@ -14349,13 +16403,13 @@ ca
ca
ca
ca
-ca
-ca
-ca
-ca
-ca
-ca
-ca
+ZJ
+ZJ
+ZJ
+ZJ
+ZJ
+ZJ
+ZJ
qA
Ng
fh
@@ -14372,7 +16426,7 @@ hC
mf
Fy
DR
-xZ
+tS
Qw
Cr
Cr
@@ -14501,13 +16555,13 @@ ca
ZL
CN
rk
-ca
-Xz
-Xz
-Xz
-Xz
-Xz
-ca
+ZJ
+wN
+Yl
+Um
+NI
+gn
+ZJ
hN
Kv
Kv
@@ -14653,13 +16707,13 @@ ca
ZL
mm
ax
-ca
-Xz
-Xz
-Xz
-Xz
-Xz
-ca
+ZJ
+nF
+eT
+hq
+Ep
+No
+ZJ
Hj
Kv
Kv
@@ -14797,7 +16851,7 @@ qi
he
eU
gD
-tG
+Rr
KO
pD
ug
@@ -14805,13 +16859,13 @@ wz
ZL
AQ
xh
-ca
-Xz
-Xz
-Xz
-Xz
-Xz
-ca
+ZJ
+TW
+yJ
+ba
+jy
+Mf
+ZJ
ZB
KQ
UK
@@ -14957,13 +17011,13 @@ pl
pl
yO
wz
-ca
-ca
-ca
-ca
-ca
-ca
-ca
+ZJ
+ZJ
+ey
+ZJ
+ZJ
+ZJ
+ZJ
qA
qA
qA
@@ -15086,8 +17140,8 @@ KO
KO
KO
MI
-tG
-tG
+Rr
+Rr
Bf
ua
Dc
@@ -15111,8 +17165,8 @@ Dc
wz
oK
wp
-wp
-wp
+gS
+GO
iN
iN
iN
@@ -15238,7 +17292,7 @@ KO
Ke
al
TP
-tG
+Rr
QW
Xd
qi
@@ -15263,8 +17317,8 @@ Qk
lm
iG
SO
+Fu
SY
-SO
iK
iK
SO
@@ -15398,8 +17452,8 @@ Wr
qi
Xd
KO
-tG
-tG
+Rr
+Rr
Xd
qi
lh
@@ -15571,7 +17625,7 @@ qu
XJ
kg
qu
-XJ
+Vp
Vp
Vp
Vp
@@ -15723,7 +17777,7 @@ Od
Sy
mk
vk
-XJ
+Vp
EQ
gL
sk
@@ -15842,7 +17896,7 @@ ou
eH
ZL
Dc
-to
+nm
RT
dJ
dJ
@@ -15875,7 +17929,7 @@ As
Vr
Vr
As
-XJ
+Vp
EQ
wl
wl
@@ -16018,7 +18072,7 @@ dJ
dJ
dJ
dA
-UA
+lg
Dc
eY
ag
@@ -16027,7 +18081,7 @@ Np
Np
rJ
As
-XJ
+Vp
EF
wl
wl
@@ -16170,7 +18224,7 @@ dJ
dJ
dJ
AG
-UA
+lg
Dc
eY
ag
@@ -16179,7 +18233,7 @@ qT
LJ
fg
Vr
-XJ
+Vp
Tk
wl
vU
@@ -16196,7 +18250,7 @@ PZ
Dx
UI
cT
-GP
+lV
Ty
Cr
Cr
@@ -16331,7 +18385,7 @@ rl
ol
rV
Vr
-XJ
+Vp
Tk
wl
FE
@@ -16348,7 +18402,7 @@ cR
Uk
cD
cT
-Rj
+zk
Ty
Cr
Cr
@@ -16483,7 +18537,7 @@ rr
OX
sm
uA
-XJ
+Vp
rX
wl
FI
@@ -16500,7 +18554,7 @@ sf
cT
cT
cs
-GP
+lV
Ty
Cr
Cr
@@ -16635,7 +18689,7 @@ Np
Np
rJ
As
-XJ
+Vp
Ld
pw
Wf
@@ -16778,7 +18832,7 @@ dJ
dJ
dJ
AG
-UA
+lg
Dc
eY
ag
@@ -16787,7 +18841,7 @@ FT
FT
sv
vB
-XJ
+Vp
EQ
Bg
FE
@@ -16930,7 +18984,7 @@ dJ
dJ
dJ
gh
-UA
+lg
Dc
eY
ag
@@ -16939,7 +18993,7 @@ WP
WP
WP
Jk
-XJ
+Vp
yx
Bo
UO
@@ -17082,7 +19136,7 @@ dJ
dJ
dJ
dB
-UA
+lg
Dc
eY
XJ
@@ -17091,7 +19145,7 @@ WP
WP
WP
KY
-XJ
+Vp
Tg
wl
FR
@@ -17243,7 +19297,7 @@ VX
VX
VX
vN
-XJ
+Vp
Sd
Cb
Gf
@@ -17395,13 +19449,13 @@ WP
WP
WP
KY
-XJ
-Vp
-Vp
-Vp
-Vp
-Vp
-Vp
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
ZM
Fa
ZM
@@ -17513,17 +19567,17 @@ Cr
ca
ca
ZL
-Dc
-KO
-pD
-ZL
-Rg
-KO
-Ea
-Ea
-Ea
-KO
-KO
+Qk
+zy
+YQ
+AL
+IZ
+zy
+pl
+pl
+pl
+zy
+Oz
aN
KO
KO
@@ -17547,7 +19601,7 @@ WP
WP
WP
KY
-XJ
+Ui
Ui
YK
Jv
@@ -17675,10 +19729,10 @@ JZ
SR
SR
pO
-wz
+Rt
OH
SR
-SR
+fx
SR
Cl
JZ
@@ -17690,7 +19744,7 @@ je
Vv
SR
pG
-UA
+lg
Dc
eY
ag
@@ -17699,7 +19753,7 @@ Ob
Ob
Ob
oL
-XJ
+Ui
nK
Cf
ik
@@ -17827,7 +19881,7 @@ bo
hS
hS
ay
-Ea
+Dc
Rg
Nf
Nf
@@ -17843,15 +19897,15 @@ Bj
Bj
Nf
lg
-Yb
-co
+Dc
+eY
XJ
fy
fL
sS
sS
bS
-XJ
+Ui
oM
CF
dO
@@ -17976,11 +20030,11 @@ CZ
aT
Qc
Bz
-Bz
+Mc
bo
eu
-Ea
-Rg
+Dc
+ie
Nf
Jb
Cv
@@ -17995,15 +20049,15 @@ jf
oJ
Nf
zJ
-Yb
-Gx
+Dc
+bf
XJ
Vr
Np
Uh
Np
As
-XJ
+Ui
Pc
FV
Zf
@@ -18126,12 +20180,12 @@ ZL
hS
um
QO
-WJ
+SV
Bz
-rY
-DV
-Ks
-KO
+GV
+bD
+HR
+pR
Rg
Nf
uF
@@ -18146,7 +20200,7 @@ OA
jg
Cw
Nf
-DC
+KO
Ey
lg
me
@@ -18155,7 +20209,7 @@ Np
Np
rJ
As
-XJ
+Ui
yM
Dl
Zf
@@ -18283,7 +20337,7 @@ Bz
LZ
hS
HH
-Ea
+Dc
Rg
Nf
cH
@@ -18298,16 +20352,16 @@ Pr
jG
xz
jV
-sK
+lm
ly
-nx
+ZL
XJ
yv
As
Ne
tT
IX
-XJ
+Ui
Gz
Dw
Gk
@@ -18435,7 +20489,7 @@ LE
tv
hS
pD
-Ea
+Dc
Rg
Nf
ov
@@ -18452,14 +20506,14 @@ JJ
Nf
cB
lE
-sa
+wz
XJ
XJ
XJ
PW
XJ
XJ
-XJ
+Ui
tX
Uv
GL
@@ -18586,9 +20640,9 @@ hS
hS
hS
hS
-vY
-HC
-HJ
+iX
+Er
+Rg
Nf
ZR
QE
@@ -18602,16 +20656,16 @@ hG
jb
FN
Nf
-DC
-Yb
-sa
+KO
+Dc
+wz
XJ
XJ
As
mk
uw
As
-XJ
+Ui
Ui
DF
oH
@@ -18731,17 +20785,16 @@ ca
ZL
Xs
QN
-ca
+MK
MK
Xv
iR
Bz
qU
hS
-Yj
-Yj
-Yj
-Nf
+RK
+Er
+vP
Nf
Nf
Nf
@@ -18750,13 +20803,14 @@ Nf
Nf
Nf
Nf
+Tc
Nf
Nf
Nf
Nf
-DC
-Yb
-Gx
+KO
+Dc
+bf
YP
ni
ry
@@ -18770,10 +20824,10 @@ Ui
Ui
Ui
Ui
-qp
+ZM
Aw
-qp
-HK
+ZM
+Ui
HK
HK
hR
@@ -18883,32 +20937,32 @@ ca
Yw
Yw
Yw
-ca
+MK
MK
BZ
iR
Bz
OC
hS
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-HF
-DC
-DC
-DC
-Yb
-nx
+pD
+Er
+Rg
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+gE
+aw
+Dc
+ZL
YP
nM
Eb
@@ -19042,25 +21096,25 @@ iR
Bz
Jg
hS
-DC
-Lh
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
-Fl
+bu
+Dc
+Rg
+gE
+gE
+Xj
+Qt
+gE
+Hk
+OZ
+yU
+yU
+ZU
Fl
-Fn
-nx
+lA
+Vu
+kw
+qc
+Gq
YP
oa
qv
@@ -19194,25 +21248,25 @@ iR
Bz
dH
hS
-DC
-Yb
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-DC
-Rr
+pD
+Dc
+Rg
+gE
+iQ
+Cn
+VT
+gE
+ML
+ny
+SB
+nx
+de
sa
+QP
+bZ
+Er
+Rr
+Rt
YP
qh
Vr
@@ -19346,29 +21400,29 @@ hS
MB
hS
hS
-Dj
-Yb
-DC
-TN
+oW
+Dc
+Rg
+gE
+sX
+tA
+gE
+gE
+ML
+ny
+uS
+ng
TN
-kB
+EB
+EB
+ye
+Qq
TN
+Qq
+YB
+YB
+YB
YB
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-YP
-YP
-YP
YP
YP
YP
@@ -19498,32 +21552,32 @@ NE
DB
Wg
hS
-DC
-Yb
-DC
+pD
+Dc
+Rg
+gE
+Wo
+iF
+Rc
+Md
+kO
+vg
+RW
+LC
TN
Fz
-Vj
AH
+AH
+Gv
+LT
+Gv
+Hc
+lK
+kF
YB
Cr
Cr
Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
sI
DX
HX
@@ -19583,422 +21637,8 @@ Cr
Cr
Cr
Cr
-"}
-(87,1,1) = {"
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-MK
-oA
-QQ
-gp
-hS
-DC
-Yb
-nH
-TN
-IN
-Vj
-gf
-YB
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-sI
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-"}
-(88,1,1) = {"
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-MK
-MK
-MK
-MK
-MK
-DC
-Yb
-DC
-TN
-kH
-Vj
-qZ
-YB
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-"}
-(89,1,1) = {"
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cq
-WV
-WV
-WV
-YB
-qj
-Vj
-dS
-YB
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
+"}
+(87,1,1) = {"
Cr
Cr
Cr
@@ -20039,8 +21679,6 @@ Cr
Cr
Cr
Cr
-"}
-(90,1,1) = {"
Cr
Cr
Cr
@@ -20061,9 +21699,62 @@ Cr
Cr
Cr
Cr
+MK
+oA
+QQ
+gp
+hS
+pD
+Dc
+vP
+gE
+qz
+Zd
+gE
+WA
+DC
+DC
+RW
+mZ
+TN
+CX
+IP
+gf
+Bd
+CP
+PL
+hy
+AH
+ZX
+YB
Cr
Cr
Cr
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
+sI
Cr
Cr
Cr
@@ -20098,6 +21789,8 @@ Cr
Cr
Cr
Cr
+"}
+(88,1,1) = {"
Cr
Cr
Cr
@@ -20109,11 +21802,6 @@ Cr
Cr
Cr
Cr
-YB
-Kt
-Oc
-Kt
-YB
Cr
Cr
Cr
@@ -20163,6 +21851,34 @@ Cr
Cr
Cr
Cr
+MK
+MK
+MK
+MK
+MK
+wi
+Td
+Rg
+gE
+co
+OY
+gE
+gE
+Cy
+sa
+nD
+gE
+TN
+TN
+gW
+It
+TN
+TN
+wI
+Gv
+IP
+jN
+YB
Cr
Cr
Cr
@@ -20191,8 +21907,6 @@ Cr
Cr
Cr
Cr
-"}
-(91,1,1) = {"
Cr
Cr
Cr
@@ -20227,6 +21941,8 @@ Cr
Cr
Cr
Cr
+"}
+(89,1,1) = {"
Cr
Cr
Cr
@@ -20261,11 +21977,6 @@ Cr
Cr
Cr
Cr
-YB
-UZ
-zG
-AW
-YB
Cr
Cr
Cr
@@ -20296,6 +22007,30 @@ Cr
Cr
Cr
Cr
+MK
+Yw
+Yw
+Yw
+kS
+kS
+kS
+kS
+kS
+oC
+kS
+oC
+kS
+TN
+Ol
+zI
+jD
+bO
+TN
+vo
+Gv
+IP
+Iy
+YB
Cr
Cr
Cr
@@ -20343,8 +22078,6 @@ Cr
Cr
Cr
Cr
-"}
-(92,1,1) = {"
Cr
Cr
Cr
@@ -20360,6 +22093,8 @@ Cr
Cr
Cr
Cr
+"}
+(90,1,1) = {"
Cr
Cr
Cr
@@ -20413,11 +22148,6 @@ Cr
Cr
Cr
Cr
-YB
-YB
-YB
-YB
-YB
Cr
Cr
Cr
@@ -20433,6 +22163,26 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+Rd
+Rd
+kS
+gT
+kS
+gT
+kS
+TN
+xJ
+Oc
+zA
+gx
+TN
+CX
+La
+us
+gt
+YB
Cr
Cr
Cr
@@ -20496,22 +22246,7 @@ Cr
Cr
Cr
"}
-(93,1,1) = {"
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
+(91,1,1) = {"
Cr
Cr
Cr
@@ -20580,6 +22315,26 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+Rd
+Rd
+kS
+gT
+kS
+gT
+kS
+TN
+zY
+zG
+Ff
+Gy
+TN
+kH
+kB
+RP
+hL
+YB
Cr
Cr
Cr
@@ -20642,13 +22397,13 @@ Cr
Cr
Cr
Cr
+"}
+(92,1,1) = {"
Cr
Cr
Cr
Cr
Cr
-"}
-(94,1,1) = {"
Cr
Cr
Cr
@@ -20712,6 +22467,30 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+Rd
+Rd
+kS
+gT
+kS
+gT
+kS
+TN
+TN
+TN
+TN
+TN
+TN
+TN
+Hh
+NU
+YB
+YB
+YB
+YB
+YB
+YB
Cr
Cr
Cr
@@ -20770,6 +22549,8 @@ Cr
Cr
Cr
Cr
+"}
+(93,1,1) = {"
Cr
Cr
Cr
@@ -20799,8 +22580,6 @@ Cr
Cr
Cr
Cr
-"}
-(95,1,1) = {"
Cr
Cr
Cr
@@ -20840,6 +22619,31 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+Rd
+Rd
+kS
+gT
+kS
+gT
+kS
+TN
+fm
+fm
+fm
+fm
+fm
+TN
+yc
+Sn
+Vq
+YB
+RN
+tB
+RM
+YB
+YB
Cr
Cr
Cr
@@ -20897,6 +22701,8 @@ Cr
Cr
Cr
Cr
+"}
+(94,1,1) = {"
Cr
Cr
Cr
@@ -20951,8 +22757,6 @@ Cr
Cr
Cr
Cr
-"}
-(96,1,1) = {"
Cr
Cr
Cr
@@ -20967,6 +22771,31 @@ Cr
Cr
Cr
Cr
+kS
+kS
+kS
+kS
+kS
+gT
+kS
+gT
+kS
+TN
+TN
+TN
+TN
+TN
+TN
+TN
+Nz
+rt
+XP
+YB
+bB
+EJ
+zL
+oo
+YB
Cr
Cr
Cr
@@ -21024,6 +22853,8 @@ Cr
Cr
Cr
Cr
+"}
+(95,1,1) = {"
Cr
Cr
Cr
@@ -21092,6 +22923,31 @@ Cr
Cr
Cr
Cr
+kS
+kS
+VJ
+co
+kS
+gT
+kS
+gT
+kS
+TN
+kh
+qW
+GU
+Ml
+AO
+EA
+yc
+aq
+Uf
+Bv
+Vj
+Xb
+Bt
+fp
+YB
Cr
Cr
Cr
@@ -21103,8 +22959,6 @@ Cr
Cr
Cr
Cr
-"}
-(97,1,1) = {"
Cr
Cr
Cr
@@ -21151,6 +23005,8 @@ Cr
Cr
Cr
Cr
+"}
+(96,1,1) = {"
Cr
Cr
Cr
@@ -21219,6 +23075,31 @@ Cr
Cr
Cr
Cr
+kS
+eB
+uo
+WG
+kS
+gT
+kS
+gT
+kS
+TN
+Ce
+fv
+Sj
+TK
+MW
+QL
+IR
+cG
+fF
+gW
+Vj
+cw
+Bt
+Ps
+YB
Cr
Cr
Cr
@@ -21255,8 +23136,6 @@ Cr
Cr
Cr
Cr
-"}
-(98,1,1) = {"
Cr
Cr
Cr
@@ -21278,6 +23157,8 @@ Cr
Cr
Cr
Cr
+"}
+(97,1,1) = {"
Cr
Cr
Cr
@@ -21346,6 +23227,31 @@ Cr
Cr
Cr
Cr
+kS
+oB
+vK
+aA
+kS
+gT
+kS
+gT
+kS
+TN
+vc
+il
+wa
+sE
+Nx
+sE
+Ye
+Sn
+uX
+YB
+dj
+fF
+uQ
+pS
+YB
Cr
Cr
Cr
@@ -21403,12 +23309,12 @@ Cr
Cr
Cr
Cr
+"}
+(98,1,1) = {"
Cr
Cr
Cr
Cr
-"}
-(99,1,1) = {"
Cr
Cr
Cr
@@ -21473,6 +23379,31 @@ Cr
Cr
Cr
Cr
+kS
+kS
+yg
+aX
+kS
+gT
+kS
+gT
+kS
+TN
+Qz
+il
+wa
+oO
+AC
+HT
+ah
+wa
+yo
+YB
+yy
+mo
+an
+YB
+YB
Cr
Cr
Cr
@@ -21530,6 +23461,8 @@ Cr
Cr
Cr
Cr
+"}
+(99,1,1) = {"
Cr
Cr
Cr
@@ -21559,8 +23492,6 @@ Cr
Cr
Cr
Cr
-"}
-(100,1,1) = {"
Cr
Cr
Cr
@@ -21600,6 +23531,30 @@ Cr
Cr
Cr
Cr
+kS
+kS
+mb
+kS
+kS
+gT
+kS
+gT
+kS
+TN
+NZ
+il
+Sn
+jS
+vG
+ds
+hU
+wa
+Hx
+YB
+YB
+YB
+YB
+YB
Cr
Cr
Cr
@@ -21658,6 +23613,8 @@ Cr
Cr
Cr
Cr
+"}
+(100,1,1) = {"
Cr
Cr
Cr
@@ -21711,8 +23668,6 @@ Cr
Cr
Cr
Cr
-"}
-(101,1,1) = {"
Cr
Cr
Cr
@@ -21728,6 +23683,26 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+Rd
+Rd
+kS
+gT
+kS
+gT
+kS
+TN
+NZ
+il
+Sn
+sE
+zl
+sE
+wH
+Sn
+XN
+YB
Cr
Cr
Cr
@@ -21790,6 +23765,8 @@ Cr
Cr
Cr
Cr
+"}
+(101,1,1) = {"
Cr
Cr
Cr
@@ -21858,13 +23835,31 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+Rd
+Rd
+kS
+gT
+kS
+gT
+kS
+TN
+TN
+TN
+Mu
+TN
+TN
+TN
+Qq
+TN
+YB
+YB
Cr
Cr
Cr
Cr
Cr
-"}
-(102,1,1) = {"
Cr
Cr
Cr
@@ -21922,6 +23917,8 @@ Cr
Cr
Cr
Cr
+"}
+(102,1,1) = {"
Cr
Cr
Cr
@@ -21990,6 +23987,25 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+kS
+kS
+kS
+gT
+kS
+gT
+kS
+kS
+YB
+Vq
+Yv
+if
+IS
+YO
+cj
+Vq
+YB
Cr
Cr
Cr
@@ -22015,8 +24031,6 @@ Cr
Cr
Cr
Cr
-"}
-(103,1,1) = {"
Cr
Cr
Cr
@@ -22055,6 +24069,8 @@ Cr
Cr
Cr
Cr
+"}
+(103,1,1) = {"
Cr
Cr
Cr
@@ -22123,6 +24139,25 @@ Cr
Cr
Cr
Cr
+kS
+Rd
+kS
+or
+or
+fq
+kS
+Jp
+or
+or
+YB
+bg
+kk
+Gu
+Gu
+Gu
+vJ
+oX
+YB
Cr
Cr
Cr
@@ -22167,8 +24202,6 @@ Cr
Cr
Cr
Cr
-"}
-(104,1,1) = {"
Cr
Cr
Cr
@@ -22188,6 +24221,8 @@ Cr
Cr
Cr
Cr
+"}
+(104,1,1) = {"
Cr
Cr
Cr
@@ -22256,6 +24291,25 @@ Cr
Cr
Cr
Cr
+kS
+kS
+kS
+kS
+kS
+kS
+kS
+kS
+kS
+kS
+YB
+ro
+rq
+jQ
+GA
+dg
+aG
+Zw
+YB
Cr
Cr
Cr
@@ -22399,15 +24453,15 @@ Cr
Cr
Cr
Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
-Cr
+YB
+YB
+YB
+YB
+YB
+YB
+YB
+YB
+YB
Cr
Cr
Cr
@@ -24524,11 +26578,11 @@ Cr
Cr
Cr
Cr
-Cr
-Cr
-Cr
-Cr
-Cr
+aS
+aS
+aS
+aS
+aS
Cr
Cr
Cr
@@ -24676,11 +26730,11 @@ Cr
Cr
Cr
Cr
-Cr
-Cr
-Cr
-Cr
-Cr
+aS
+gB
+aS
+aS
+aS
Cr
Cr
Cr
@@ -24828,11 +26882,11 @@ Cr
Cr
Cr
Cr
-Cr
-Cr
-Cr
-Cr
-Cr
+aS
+aS
+aS
+aS
+aS
Cr
Cr
Cr
diff --git a/maps/shivas_snowball.json b/maps/shivas_snowball.json
index 412f0e35ff..60ee8b27c9 100644
--- a/maps/shivas_snowball.json
+++ b/maps/shivas_snowball.json
@@ -6,6 +6,7 @@
"environment_traits": {
"COLD": true
},
+ "weather_holder": "/datum/weather_ss_map_holder/shivas_snowball",
"survivor_types": [
"/datum/equipment_preset/survivor/corporate/shiva",
"/datum/equipment_preset/survivor/doctor/shiva",
diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm
index 7c49edfdd0..ea14641a75 100644
--- a/maps/shuttles/dropship_alamo.dmm
+++ b/maps/shuttles/dropship_alamo.dmm
@@ -382,7 +382,7 @@
/area/shuttle/drop1/sulaco)
"Ho" = (
/obj/structure/machinery/computer/dropship_weapons/dropship1,
-/obj/structure/transmitter/rotary{
+/obj/structure/phone_base/rotary{
name = "Alamo Telephone";
phone_category = "Dropship";
phone_id = "Alamo";
diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm
index f1595cd97d..55d07883e3 100644
--- a/maps/shuttles/dropship_normandy.dmm
+++ b/maps/shuttles/dropship_normandy.dmm
@@ -156,7 +156,7 @@
/area/shuttle/drop2/sulaco)
"lH" = (
/obj/structure/machinery/computer/dropship_weapons/dropship2,
-/obj/structure/transmitter/rotary{
+/obj/structure/phone_base/rotary{
name = "Normandy Telephone";
phone_category = "Dropship";
phone_id = "Normandy";
diff --git a/maps/templates/clf_ert_station.dmm b/maps/templates/clf_ert_station.dmm
index 7347be914d..aa48ff8d9f 100644
--- a/maps/templates/clf_ert_station.dmm
+++ b/maps/templates/clf_ert_station.dmm
@@ -1654,7 +1654,7 @@
/obj/item/spacecash/c1,
/obj/item/storage/box/matches,
/obj/structure/surface/table/woodentable/fancy,
-/obj/structure/transmitter/rotary{
+/obj/structure/phone_base/rotary{
name = "CLF Outpost";
phone_category = "CLF";
phone_id = "CLF Outpost";
diff --git a/maps/templates/upp_ert_station.dmm b/maps/templates/upp_ert_station.dmm
index ae2a8ad40c..6db27a83e6 100644
--- a/maps/templates/upp_ert_station.dmm
+++ b/maps/templates/upp_ert_station.dmm
@@ -876,7 +876,7 @@
/area/adminlevel/ert_station/upp_station)
"mG" = (
/obj/structure/surface/table/reinforced/black,
-/obj/structure/transmitter/rotary{
+/obj/structure/phone_base/rotary{
name = "UPP Station";
phone_category = "UPP";
phone_id = "UPP Station";
diff --git a/maps/templates/weyland_ert_station.dmm b/maps/templates/weyland_ert_station.dmm
index 1937aa6a61..82fe23c5bc 100644
--- a/maps/templates/weyland_ert_station.dmm
+++ b/maps/templates/weyland_ert_station.dmm
@@ -2794,7 +2794,7 @@
/area/adminlevel/ert_station/weyland_station)
"Js" = (
/obj/structure/surface/table/reinforced/black,
-/obj/structure/transmitter/rotary{
+/obj/structure/phone_base/rotary{
do_not_disturb = 2;
name = "Weyland-Yutani Station CiC";
phone_category = "W-Y";
@@ -3587,7 +3587,7 @@
/area/adminlevel/ert_station/weyland_station)
"SE" = (
/obj/structure/surface/table/woodentable/fancy,
-/obj/structure/transmitter/rotary{
+/obj/structure/phone_base/rotary{
do_not_disturb = 2;
name = "Weyland-Yutani Station Meeting Room";
phone_category = "W-Y";
diff --git a/maps/tents/tent_cmd.dmm b/maps/tents/tent_cmd.dmm
index 0dbd6a6ef3..2349142770 100644
--- a/maps/tents/tent_cmd.dmm
+++ b/maps/tents/tent_cmd.dmm
@@ -21,7 +21,7 @@
dir = 1
},
/obj/structure/surface/table,
-/obj/structure/transmitter/tent{
+/obj/structure/phone_base/tent{
phone_category = "Command";
phone_id = "Ground Command";
pixel_x = -2;
diff --git a/maps/tents/tent_reqs.dmm b/maps/tents/tent_reqs.dmm
index 2dc47531ed..d5dcd1d51a 100644
--- a/maps/tents/tent_reqs.dmm
+++ b/maps/tents/tent_reqs.dmm
@@ -53,7 +53,7 @@
dir = 8
},
/obj/structure/bed/chair,
-/obj/structure/transmitter/tent{
+/obj/structure/phone_base/tent{
pixel_y = 30;
pixel_x = 16;
phone_category = "Command";
diff --git a/sound/effects/Heart Beat Short.ogg b/sound/effects/heart_beat_short.ogg
similarity index 100%
rename from sound/effects/Heart Beat Short.ogg
rename to sound/effects/heart_beat_short.ogg
diff --git a/strings/marinetips.txt b/strings/marinetips.txt
index cf808884f1..416c9ef0a4 100644
--- a/strings/marinetips.txt
+++ b/strings/marinetips.txt
@@ -53,35 +53,51 @@ A misloaded OB can deviate severely from the intended target area - ensure you l
The XO and CO are trained in Power Loader use and engineering, and can load the OB.
You can change what your SL tracker beacon is tracking by right clicking on your headset and clicking "Switch Tracker Target".
Boilers emit light - not every glow from around the corner is friendly!
+The amount of items in Requisitions and Squad Preparations depend on how many players readied up at the start of the round.
You can carry a variety of items inside your helmet - from gauze and cigarettes to flares and screwdrivers.
CIC staff can track every USCM-aligned person via the suit sensors console and overwatch console - useful for finding escaped prisoners or dead marines.
When the M7 RPG is fired, it creates a substantial shockwave behind it that can stun and harm marines standing too close. Watch your backblast!
Remember that you need to put a defibrillator's paddles away in order to store it.
-W-Y PMCs do not have marine IFF. Don't fire Smartguns through them!
-To talk on multiple radio channels at once, put a COMMA [,] before your message and add up to four prefixes. E.g, ,abcd talks on all squad channels at once.
+W-Y PMCs do not have marine IFF. Don't fire Smartguns at them!
+To talk on multiple radio channels at once, put a COMMA [,] before your message and add up to four prefixes. E.g, ,abcd talks on the main four squad channels at once.
Put .w or :w before your message to whisper. Another way to whisper is to use the verb "whisper" in the IC tab or command bar.
For Vehicle Crewmen : it is often safer to repair the parts of your APC or tank inside the vehicle than outside it.
It is almost always faster to do surgery manually than in the autodoc.
To check your skills, go to the IC tab and click "view skills".
+Minirockets pack the most punch per cost as far as CAS weaponry is concerned.
The U7 underbarrel shotgun can instantly break down both resin doors and mechanical airlocks, and it's not bad at breaking walls down either.
You can find breaching charges in Requisitions or the Squad Engineer vendor. They function like C4, but can be deployed and explode much quicker, and release powerful shrapnel on the opposite side. They require minor engineering knowledge, which can be obtained from pamphlets.
Armor piercing ammunition does less damage to unarmored targets.
+Requisitions may not grant you service if you are a 'pajamarine' : a marine in cryosleep attire. Be sure to dress up!
You can insert empty pill bottles into ChemMasters before creating pills to have them automatically inserted.
Nurses can practice a full range of surgeries on Professor DUMMY. Ask the gods to give you one if you see (or are) a nurse practicing.
Drinks from the hot drinks machine warm you up.
Be careful! Barricades block grenades, and indeed all thrown items, from the front if they're barbed up.
+CAS Fire Missions doubles the accuracy of fired weapons, which can be substantial.
Painkillers do not stack. Only the strongest has any effect.
+Don't underestimate the mortar: with ammo and proper communication it can hit surprisingly hard.
+You can shoot through tents, but they won't protect you much in return.
+Reqs doesn't have an infinite budget.
+Good Reqs can land supplies anywhere outside - given coords - and sometimes in a minimal amount of time.
+A ‘point blank’ or ‘PB’ is a type of attack with a firearm where you click directly on a mob next to you. These attacks are not effected by accuracy allowing you to quickly fire with weapons like a shotgun to great effect.
Intel Officers can be put in a squad by going to CIC and requesting it.
Any marine can perform CPR. On dead marines, this will increase the time they have until they become unrevivable.
If you've been pounced on and your squad is unloading into the target, you can hit the 'rest' button to stay down so you don't get filled with lead after getting up.
You can check the landing zone as a marine in the status panel.
+The Colonial Marshals may come to crack down on too heavy of a Black Market usage.
Functioning night vision goggles can be recharged with batteries. Broken night vision goggles can be repaired by an Engineer with a screwdriver. Not the loadout ones though, those cannot be fixed.
You can put a pistol belt on your suit slot. (Just grab a rifle instead.)
Alt-clicking the Squad Leader tracker lets you track your fireteam leader instead.
Armor has a randomized reduction in effectiveness, and does not protect the digits. Take the wiki damage values as a best-case scenario.
You can click on your Security Access Tuner (multitool) in your hand to locate the area's APC if there is one.
+Need help learning the game and these tips aren't enough? Use MentorHelp or try to get ahold of your ship's Senior Enlisted Advisor.
Clicking on your sprite with help intent will let you check your body, seeing where your fractures and other wounds are.
Armor has insulative properties - taking it off will help you cool off and take less damage faster if you've been set on fire.
Both foldable cades & plasteel cades if loosened and folded down can be transported in crates! In this way, you can use the crate as a portable breach-repair kit, or dragged (or carried via Power Loader) to an unsecure area for quick defensive set up.
The fuel tank pouch doesn't just carry fuel for an incinerator- they can also carry full-size extinguishers. Toolbelts & tool pouches also may hold miniature extinguishers.
The M2C heavy machine gunner belt rig can also carry C4, breaching charges, and most tools.
+You can always multitask as Medic, such as by using pills or healing kits at the same time as defibrillator.
+The nuclear ordnance requires BOTH communication towers to be actively held to decrypt the nuclear codes.
+ARES will periodically report the amount of available tech points on Command Channel.
+The quick wield keys generally prioritize wieldable gear going from left to right on your inventory bar.
+Orbital Bombardment warheads respect roofing and hive core protection. They won't hit inside of protected areas.
diff --git a/strings/memetips.txt b/strings/memetips.txt
index e05ac2f66b..abfe087218 100644
--- a/strings/memetips.txt
+++ b/strings/memetips.txt
@@ -12,17 +12,39 @@ Contrary to popular belief, turning off IFF as a Smartgunner does not actually i
When playing as a Xenomorph, remember to aim for the groin to inflict additional psychological damage to marines.
Never tell an officer that you're smarter than them - especially if it's true.
There is no USS Sulaco.
-There is no such thing as an Intel Officer.
+There is no such thing as a Radio-Telephone Operator.
There is no such thing as a techweb.
+There is no such thing as a tip.
+There is no such thing as a Fatty.
+Dropship update is dropping tomorrow.
+Don't forget your ceramic plates.
Echo Squad does not exist.
+Reqs should always spend all its resources on the Black Market.
Foxtrot Squad DEFINITELY does not exist.
+Intel Squad is a unicorn.
Spec rolls are not actually random.
+Watch out for Queen's charge ability.
Never, ever attempt to correct a Provost about anything.
If you die, make sure to ahelp so staff can restart the round!
+You can obtain spec tokens by climbing outside the map and into space.
There is no alcohol on Whiskey Outpost, other than in the Ground Commander's locker.
Hitting enemies with weapons damages them.
+Don't swap East and West. AGAIN.
+Don't swap Minus and Positive coordinates... AGAIN.
+OB'ing the FOB is always an option.
+OB'ing the FOB is the best way to get some recognition from the aCO.
+The sky erupts into flames right above you!
This tip is a lie.
+Stay hydrated.
+Have a good day.
+There is no tip.
+These tips suck. Please write more.
+This tip is not ready, please wait until next round.
+Someone stole this tip, ask staff for a new one.
If it's stupid but it works, it isn't stupid.
If it's stupid but it works, it's still stupid and you got lucky.
Corroders aren't real. They can't hurt you.
ARES is not sentient. It has no feelings and its only thoughts are pre-programmed subroutines.
+Remember that as Yautja HPCs are your primary weapons.
+You can always bully staff into giving you more awesome tips.
+Embrace the suck.
diff --git a/strings/metatips.txt b/strings/metatips.txt
index f694da02b5..24be6896bc 100644
--- a/strings/metatips.txt
+++ b/strings/metatips.txt
@@ -1,13 +1,22 @@
Remember hotkeys and macros can be customized to your liking. Hotkeys can be accessed in your preferences, and macros can be edited in the Byond macro editor, available in the top left drop down menu (click the Byond logo in the corner of the game window).
-If you're unsure about a gameplay mechanic, use the 'mentorhelp' verb in the Admin tab to ask veteran players on the subject.
+If you're unsure about a gameplay mechanic, use the 'mentorhelp' verb in the Admin tab to ask veteran players on the subject. It is also available from the pause menu, pressing ESCAPE.
Try not to get too mad about dying. We’re all here to have fun.
+You can get information on current TestMerges by pressing 'Show Server Revision' in 'OOC' tab.
After dying, ask yourself what you did wrong and make a mental note to not make the same mistake again.
Communication, be it from a marine to a marine, a drone to the queen, or command to everyone, is vital and information on flanks can change how the entire round plays out.
As an alien or marine, be careful of the flank, regardless of if the push is going well or stalling out.
Half of getting good is knowing to be aggressive. The other half is knowing when not to be aggressive.
Alt-click a storage item to draw the last item in it (last non-weapon if it's a weapon belt). Middle-click a storage item to immediately open it, and middle-click structures to attempt to vault them.
Use "North, South, West, East" when referring to locations in-game rather than "up, down, left, right".
+As a mentor, you can become the imaginary friend of a new player to teach them!
You shouldn't ignore what your allies are up to. Sometimes they can be organizing a flank in hivemind/radio, sometimes they can be walking up behind you with a slug-loaded shotgun. Either way, it pays to be alert to what they're doing, as much to as what the enemies are.
The Wiki (https://cm-ss13.com/wiki) is a very useful repository of information about the game, such as weapons, equipment, xenomorph castes and their strains. It may not be fully up to date much of the time, but the basics are usually accurate.
As an observer, you may see how much remaining hijack time is left in the status panel.
-Embrace the suck.
+You can always AdminHelp with the F1 key to question a mmeber of staff regarding rules or game bugs.
+As ghost you are given extra tools for spectating the round: you can jump and follow specific players, get notifications about CAS and OB strikes, can see all health bars, and such.
+You can press ESC key to bring up the game pause menu. It allows you change settings, AdminHelp and MentorHelp, and even access the Web Maps of game by clicking at top right.
+Dead? You can take that moment to 'Edit Characters' from Preferences or Escape menus, to flesh out your characters or change your settings.
+Control of intelligence is important: be it for retrieving it as marine, or denying it as Xeno.
+If the lobby music is too loud or bothering you, you can disable it in Preferences tab at top right.
+Maps can and will be unpredictably modified by the Nightmare system - stay frosty while roaming around!
+You can go to GitHub to view code of the game and propose modifications of your own.
diff --git a/strings/xenotips.txt b/strings/xenotips.txt
index 2ca2964ae2..8674146de6 100644
--- a/strings/xenotips.txt
+++ b/strings/xenotips.txt
@@ -32,5 +32,7 @@ You can join the hive as a living Facehugger by clicking on the hive's Eggmorphe
Playable Facehuggers can leap onto targets with a one-second windup, but this will only infect them if they are adjacent to it. Otherwise, it will simply knock them down for a small duration.
As a Facehugger, you cannot talk in hivemind, but you can still open Hive Status and overwatch your sisters. This can be useful if you're locating other Facehuggers, flanker castes, or trying to learn from experienced Facehugger players.
Shift-clicking the Queen indicator will tell you what area you are in, on the map.
+As a Ravager your abilities become greatly enhanced when you empower with three or more people around you.
Resisting on a water tile will immediately put out fires. Make sure you're alone though - It's usually better to let a friendly Xenomorph pat you out than it is to expose yourself to open water.
You can filter out the Xenomorphs displayed in hive status by health, allowing you to look only for wounded sisters.
+Each xeno has their own ‘tackle counter’ on a marine. The range to successfully tackle can be anywhere from two to six tackles based on caste. If a marine gets stunned or knocked over by other means it will reset everyone's tackle counters and they may get up!
diff --git a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss
index 835a943417..2421b9e11d 100644
--- a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss
+++ b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss
@@ -1001,7 +1001,7 @@ em {
}
.alpharadio {
- color: #db2626;
+ color: #828cff;
}
.bravoradio {
diff --git a/tgui/packages/tgui-panel/styles/goon/chat-light.scss b/tgui/packages/tgui-panel/styles/goon/chat-light.scss
index 8501d0b952..0c5f611ed1 100644
--- a/tgui/packages/tgui-panel/styles/goon/chat-light.scss
+++ b/tgui/packages/tgui-panel/styles/goon/chat-light.scss
@@ -1029,7 +1029,7 @@ h2.alert {
}
.alpharadio {
- color: #ea0000;
+ color: #828cff;
}
.bravoradio {
diff --git a/tgui/packages/tgui/interfaces/GameMaster.js b/tgui/packages/tgui/interfaces/GameMaster.js
index 8e641b1884..d5b306704a 100644
--- a/tgui/packages/tgui/interfaces/GameMaster.js
+++ b/tgui/packages/tgui/interfaces/GameMaster.js
@@ -1,83 +1,212 @@
import { useBackend } from '../backend';
-import { Flex, Dropdown, Button, Section } from '../components';
+import { Dropdown, Button, Section, Slider, Collapsible, Stack, Divider } from '../components';
import { Window } from '../layouts';
export const GameMaster = (props, context) => {
const { data, act } = useBackend(context);
return (
-
+
-
-
-
-
-
-
-
- {
- act('set_xeno_spawns', { value });
- }}
- />
-
-
- {
- act('set_selected_xeno', { new_xeno });
- }}
- />
-
-
-
-
-
-
- {
- act('xeno_spawn_ai_toggle');
- }}
- />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
);
};
+
+export const SpawningPanel = (props, context) => {
+ const { data, act } = useBackend(context);
+
+ return (
+
+
+
+
+
+ {
+ act('set_xeno_spawns', { value });
+ }}
+ />
+
+
+ {
+ act('set_selected_xeno', { new_xeno });
+ }}
+ />
+
+
+
+
+
+
+ {
+ act('xeno_spawn_ai_toggle');
+ }}
+ />
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export const BehaviorPanel = (props, context) => {
+ const { data, act } = useBackend(context);
+
+ return (
+
+
+
+ {
+ act('set_selected_behavior', { new_behavior });
+ }}
+ />
+
+
+
+
+
+ );
+};
+
+export const ObjectivePanel = (props, context) => {
+ const { data, act } = useBackend(context);
+
+ return (
+
+
+
+
+ {data.game_master_objectives && (
+
+
+
+ {data.game_master_objectives.map((val) => {
+ if (val) {
+ return (
+
+
+
+
+
+
+
+
+ {val.objective_info}
+
+
+
+ );
+ }
+ })}
+
+
+
+
+ )}
+
+
+ );
+};
+
+export const CommunicationPanel = (props, context) => {
+ const { data, act } = useBackend(context);
+
+ return (
+
+
+
+
+ Communication Clarity
+
+ {
+ act('set_communication_clarity', { clarity });
+ }}
+ />
+
+
+
+ );
+};
diff --git a/tgui/packages/tgui/interfaces/PhoneMenu.js b/tgui/packages/tgui/interfaces/PhoneMenu.js
index 9a2edf9437..979ad8610d 100644
--- a/tgui/packages/tgui/interfaces/PhoneMenu.js
+++ b/tgui/packages/tgui/interfaces/PhoneMenu.js
@@ -15,10 +15,10 @@ export const PhoneMenu = (props, context) => {
const GeneralPanel = (props, context) => {
const { act, data } = useBackend(context);
- const { availability } = data;
- const available_transmitters = Object.keys(data.available_transmitters);
- const transmitters = data.transmitters.filter((val1) =>
- available_transmitters.includes(val1.phone_id)
+ const { do_not_disturb } = data;
+ const available_phones = Object.keys(data.available_phones);
+ const phones = data.phones.filter((val1) =>
+ available_phones.includes(val1.phone_id)
);
const [currentSearch, setSearch] = useLocalState(
@@ -34,8 +34,8 @@ const GeneralPanel = (props, context) => {
);
const categories = [];
- for (let i = 0; i < transmitters.length; i++) {
- let data = transmitters[i];
+ for (let i = 0; i < phones.length; i++) {
+ let data = phones[i];
if (categories.includes(data.phone_category)) continue;
categories.push(data.phone_category);
@@ -50,14 +50,14 @@ const GeneralPanel = (props, context) => {
let dnd_tooltip = 'Do Not Disturb is DISABLED';
let dnd_locked = 'No';
let dnd_icon = 'volume-high';
- if (availability === 1) {
+ if (do_not_disturb === 1) {
dnd_tooltip = 'Do Not Disturb is ENABLED';
dnd_icon = 'volume-xmark';
- } else if (availability >= 2) {
+ } else if (do_not_disturb >= 2) {
dnd_tooltip = 'Do Not Disturb is ENABLED (LOCKED)';
dnd_locked = 'Yes';
dnd_icon = 'volume-xmark';
- } else if (availability < 0) {
+ } else if (do_not_disturb < 0) {
dnd_tooltip = 'Do Not Disturb is DISABLED (LOCKED)';
dnd_locked = 'Yes';
}
@@ -88,7 +88,7 @@ const GeneralPanel = (props, context) => {
node.focus()}>
- {transmitters.map((val) => {
+ {phones.map((val) => {
if (
val.phone_category !== currentCategory ||
!val.phone_id.toLowerCase().match(currentSearch)
@@ -140,9 +140,38 @@ const GeneralPanel = (props, context) => {
icon={dnd_icon}
fluid
textAlign="center"
- onClick={() => act('toggle_dnd')}
+ onClick={() => act('toggle_do_not_disturb')}
/>
+ {data.virtual_phone && (
+
+
+
+
+
+
+
+
+
+
+
+ )}
);
diff --git a/tgui/public/tgui-panel.bundle.css b/tgui/public/tgui-panel.bundle.css
index 3cb39fe3db..c1eec9f615 100644
--- a/tgui/public/tgui-panel.bundle.css
+++ b/tgui/public/tgui-panel.bundle.css
@@ -1,2 +1,2 @@
-html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-dark-blue{color:#005fa7 !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-light-grey{color:#b3b3b3 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-xeno{color:#664573 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-dark-blue{background-color:#003e6e !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-light-grey{background-color:#919191 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.color-bg-xeno{background-color:#462f4e !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:transparent !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-dark-blue{outline:.167rem solid #005fa7 !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-light-grey{outline:.167rem solid #b3b3b3 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.outline-color-xeno{outline:.167rem solid #664573 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003e6e;color:#fff}.Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.Button--color--dark-blue:hover,.Button--color--dark-blue:focus{background-color:#135b92;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:#919191;color:#fff}.Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.Button--color--light-grey:hover,.Button--color--light-grey:focus{background-color:#bababa;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#462f4e;color:#fff}.Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.Button--color--xeno:hover,.Button--color--xeno:focus{background-color:#64496d;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#202020;color:#fff;background-color:rgba(32,32,32,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#383838;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.Button--flex{display:inline-flex;flex-direction:column}.Button--flex--fluid{width:100%}.Button--verticalAlignContent--top{justify-content:flex-start}.Button--verticalAlignContent--middle{justify-content:center}.Button--verticalAlignContent--bottom{justify-content:flex-end}.Button__content{display:block;align-self:stretch}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--dark-blue .Knob__ringFill{stroke:#005fa7}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--light-grey .Knob__ringFill{stroke:#b3b3b3}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.Knob--color--xeno .Knob__ringFill{stroke:#664573}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left}.LabeledList__label--nowrap{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.Modal{background-color:#202020;max-width:calc(100% - 1rem);padding:1rem}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--dark-blue{color:#fff;background-color:#02121f}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--light-grey{color:#fff;background-color:#6a6a6a}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--color--xeno{color:#fff;background-color:#19161b}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border-color:#000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border-color:#d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border-color:#bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border-color:#d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border-color:#d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border-color:#9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border-color:#1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border-color:#009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border-color:#1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--dark-blue{border-color:#003e6e !important}.ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003e6e}.ProgressBar--color--violet{border-color:#552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border-color:#8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border-color:#cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border-color:#8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border-color:#646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--light-grey{border-color:#919191 !important}.ProgressBar--color--light-grey .ProgressBar__fill{background-color:#919191}.ProgressBar--color--good{border-color:#4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border-color:#cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border-color:#bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border-color:#657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.ProgressBar--color--xeno{border-color:#462f4e !important}.ProgressBar--color--xeno .ProgressBar__fill{background-color:#462f4e}.Section{position:relative;margin-bottom:.5em;background-color:#131313;background-color:#131313;box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#131313}.Tabs--fill{height:100%}.Section .Tabs{background-color:transparent}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--dark-blue{color:#008ffd}.Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#005fa7}.Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#005fa7}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--light-grey{color:#c6c6c6}.Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#b3b3b3}.Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#b3b3b3}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Tab--selected.Tab--color--xeno{color:#9366a3}.Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#664573}.Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#664573}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea--noborder{border:0px}.TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.Chat{color:#abc6ec}.Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.Chat__badge:before{content:"x"}.Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.Chat__scrollButton{position:fixed;right:2em;bottom:1em}.Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#131313}.Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.Chat__highlight{color:#000}.Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.ChatMessage{word-wrap:break-word}.ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.Ping{position:relative;padding:.125em .25em;border:.0833333333em solid rgba(140,140,140,.5);border-radius:.25em;width:3.75em;text-align:right}.Ping__indicator{content:"";position:absolute;top:.5em;left:.5em;width:.5em;height:.5em;background-color:#888;border-radius:.25em}.Notifications{position:absolute;bottom:1em;left:1em;right:2em}.Notification{color:#fff;background-color:crimson;padding:.5em;margin:1em 0}.Notification:first-child{margin-top:0}.Notification:last-child{margin-bottom:0}.Layout,.Layout *{scrollbar-base-color:#181818;scrollbar-face-color:#363636;scrollbar-3dlight-color:#202020;scrollbar-highlight-color:#202020;scrollbar-track-color:#181818;scrollbar-arrow-color:#909090;scrollbar-shadow-color:#363636}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#202020;background-image:linear-gradient(to bottom, #202020 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(56,56,56,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}em{font-style:normal;font-weight:bold}img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}a{color:#397ea5}a.visited{color:#7c00e6}a:visited{color:#7c00e6}a.popt{text-decoration:none}.popup{position:fixed;top:50%;left:50%;background:#ddd}.popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.popup .close:hover{background:#999}.popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.popup input[type=text]:hover,.popup input[type=text]:active,.popup input[type=text]:focus{border-color:green}.popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.popup input[type=submit]:hover,.popup input[type=submit]:focus,.popup input[type=submit]:active{background:#aaa;cursor:pointer}.changeFont{padding:10px}.changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.changeFont a:hover{background:#ccc}.highlightPopup{padding:10px;text-align:center}.highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.highlightPopup input.highlightColor{background-color:#ff0}.highlightPopup input.highlightTermSubmit{margin-top:5px}.contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.contextMenu a:hover{background-color:#ccc}.filterMessages{padding:5px}.filterMessages div{padding:2px 0}.icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.motd{color:#a4bad6;font-family:Verdana,sans-serif;white-space:normal}.motd h1,.motd h2,.motd h3,.motd h4,.motd h5,.motd h6{color:#a4bad6;text-decoration:underline}.motd a,.motd a:link,.motd a:visited,.motd a:active,.motd a:hover{color:#a4bad6}.bold,.name,.prefix,.ooc,.looc,.adminooc,.admin,.medal,.yell{font-weight:bold}.italic,.italics{font-style:italic}.highlight{background:#ff0}h1,h2,h3,h4,h5,h6{color:#a4bad6;font-family:Georgia,Verdana,sans-serif}h1.alert,h2.alert{color:#a4bad6}em{font-style:normal;font-weight:bold}.ooc{font-weight:bold}.adminobserverooc{color:#09c;font-weight:bold}.adminooc{color:#3d5bc3;font-weight:bold}.adminsay{color:#9611d4;font-weight:bold}.admin{color:#5975da;font-weight:bold}.name{font-weight:bold}.deadsay{color:#e2c1ff}.binarysay{color:#1e90ff}.binarysay a{color:lime}.binarysay a:active,.binarysay a:visited{color:#8f8}.radio{color:#1ecc43}.sciradio{color:#c68cfa}.comradio{color:#fcdf03}.secradio{color:#dd3535}.medradio{color:#57b8f0}.engradio{color:#f37746}.suppradio{color:#b88646}.servradio{color:#6ca729}.syndradio{color:#8f4a4b}.gangradio{color:#ac2ea1}.centcomradio{color:#2681a5}.aiprivradio{color:#d65d95}.redteamradio{color:#f44}.blueteamradio{color:#3434fd}.greenteamradio{color:#34fd34}.yellowteamradio{color:#fdfd34}.yell{font-weight:bold}.alert{color:#d82020}.userdanger{color:#c51e1e;font-weight:bold;font-size:185%}.bolddanger{color:#c51e1e;font-weight:bold}.danger{color:#c51e1e}.warning{color:#c51e1e;font-style:italic}.alertwarning{color:red;font-weight:bold}.boldwarning{color:#c51e1e;font-style:italic;font-weight:bold}.announce{color:#c51e1e;font-weight:bold}.boldannounce{color:#c51e1e;font-weight:bold}.minorannounce{font-weight:bold;font-size:185%}.greenannounce{color:#059223;font-weight:bold}.rose{color:#ff5050}.info{color:#9ab0ff}.notice{color:#6685f5}.staff_ic{color:#6685f5}.tinynotice{color:#6685f5;font-size:85%}.tinynoticeital{color:#6685f5;font-style:italic;font-size:85%}.smallnotice{color:#6685f5;font-size:90%}.smallnoticeital{color:#6685f5;font-style:italic;font-size:90%}.boldnotice{color:#6685f5;font-weight:bold}.hear{color:#6685f5;font-style:italic}.adminnotice{color:#6685f5}.adminhelp{color:red;font-weight:bold}.unconscious{color:#a4bad6;font-weight:bold}.suicide{color:#ff5050;font-style:italic}.green{color:#059223}.grey{color:#838383}.red{color:red}.blue{color:#215cff}.nicegreen{color:#059223}.boldnicegreen{color:#059223;font-weight:bold}.cult{color:#973e3b}.cultitalic{color:#973e3b;font-style:italic}.cultbold{color:#973e3b;font-style:italic;font-weight:bold}.cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.narsie{color:#973e3b;font-weight:bold;font-size:925%}.narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.colossus{color:#7f282a;font-size:310%}.hierophant{color:#b441ee;font-weight:bold;font-style:italic}.hierophant_warning{color:#c56bf1;font-style:italic}.purple{color:#9956d3}.holoparasite{color:#88809c}.revennotice{color:#c099e2}.revenboldnotice{color:#c099e2;font-weight:bold}.revenbignotice{color:#c099e2;font-weight:bold;font-size:185%}.revenminor{color:#823abb}.revenwarning{color:#760fbb;font-style:italic}.revendanger{color:#760fbb;font-weight:bold;font-size:185%}.deconversion_message{color:#a947ff;font-size:185%;font-style:italic}.ghostalert{color:#60f;font-style:italic;font-weight:bold}.alien{color:#855d85}.noticealien{color:#059223}.alertalien{color:#059223;font-weight:bold}.changeling{color:#059223;font-style:italic}.alertsyndie{color:red;font-size:185%;font-weight:bold}.spider{color:#80f;font-weight:bold;font-size:185%}.interface{color:#750e75}.sans{font-family:"Comic Sans MS",cursive,sans-serif}.papyrus{font-family:"Papyrus",cursive,sans-serif}.robot{font-family:"Courier New",cursive,sans-serif}.tape_recorder{color:red;font-family:"Courier New",cursive,sans-serif}.command_headset{font-weight:bold;font-size:160%}.small{font-size:60%}.big{font-size:185%}.reallybig{font-size:245%}.extremelybig{font-size:310%}.greentext{color:#059223;font-size:185%}.redtext{color:#c51e1e;font-size:185%}.clown{color:#ff70c1;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.hypnophrase{color:#202020;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#202020}25%{color:#4b02ac}50%{color:#9f41f1}75%{color:#541c9c}100%{color:#7adbf3}}.phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#f75a5a}50%{color:#d00}100%{color:#f75a5a}}.icon{height:1em;width:auto}.bigicon{font-size:2.5em}.memo{color:#638500;text-align:center}.memoedit{text-align:center;font-size:125%}.abductor{color:#c204c2;font-style:italic}.mind_control{color:#df3da9;font-size:100%;font-weight:bold;font-style:italic}.slime{color:#00ced1}.drone{color:#848482}.monkey{color:#975032}.swarmer{color:#2c75ff}.resonate{color:#298f85}.monkeyhive{color:#a56408}.monkeylead{color:#af6805;font-size:80%}.connectionClosed,.fatalError{background:red;color:#fff;padding:5px}.connectionClosed.restored{background:green}.internal.boldnshit{color:#3d5bc3;font-weight:bold}.text-normal{font-weight:normal;font-style:normal}.hidden{display:none;visibility:hidden}.ml-1{margin-left:1em}.ml-2{margin-left:2em}.ml-3{margin-left:3em}.xooc{color:#ac04e9;font-weight:bold;font-size:140%}.mooc{color:#090;font-weight:bold;font-size:140%}.yooc{color:#999600;font-weight:bold;font-size:140%}.headminsay{color:#653d78;font-weight:bold}.radio{color:#b4b4b4}.deptradio{color:#939}.comradio{color:#779cc2}.centradio{color:#5c5c8a}.hcradio{color:#318779}.pvstradio{color:#9b0612}.cryoradio{color:#ad6d48}.airadio{color:#f0f}.secradio{color:#a52929}.engradio{color:#a66300}.sentryradio{color:#844300}.sentryradio{color:#844300}.medradio{color:#008160}.supradio{color:#ba8e41}.jtacradio{color:#ad3b98}.intelradio{color:#027d02}.wyradio{color:#fe9b24}.pmcradio{color:#4dc5ce}.vairadio{color:#e3580e}.rmcradio{color:#e3580e}.cmbradio{color:#1b748c}.clfradio{color:#8e83ca}.alpharadio{color:#db2626}.bravoradio{color:#c68610}.charlieradio{color:#a5a}.deltaradio{color:#007fcf}.echoradio{color:#3eb489}.medium{font-size:110%}.big{font-size:115%}.large{font-size:125%}.extra_large{font-size:130%}.huge{font-size:150%}.underline{text-decoration:underline}.orange{color:#eca100}.normal{font-style:normal}.attack{color:#ff3838}.moderate{color:#c00}.disarm{color:#900}.passive{color:#600}.helpful{color:#368f31}.scanner{color:#ff3838}.scannerb{color:#ff3838;font-weight:bold}.scannerburn{color:orange}.scannerburnb{color:orange;font-weight:bold}.rose{color:#ff5050}.debuginfo{color:#493d26;font-style:italic}.xenonotice{color:#51a16c}.xenoboldnotice{color:#51a16c;font-style:italic}.xenowarning{color:#51a16c;font-style:italic}.xenominorwarning{color:#51a16c;font-weight:bold;font-style:italic}.xenodanger{color:#51a16c;font-weight:bold}.avoidharm{color:#72a0e5;font-weight:bold}.highdanger{color:#ff3838;font-weight:bold;font-size:140%}.xenohighdanger{color:#51a16c;font-weight:bold;font-size:140%}.xenoannounce{color:#65c585;font-family:book-antiqua;font-weight:bold;font-size:140%}.yautjabold{color:purple;font-weight:bold}.yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.objectivebig{font-weight:bold;font-size:130%}.objectivegreen{color:lime}.objectivered{color:red}.objectivesuccess{color:lime;font-weight:bold;font-size:110%}.objectivefail{color:red;font-weight:bold;font-size:110%}.xenotalk,.xeno{color:#c048c0;font-style:italic}.xenoleader{color:#996e99;font-style:italic;font-size:125%}.xenoqueen{color:#996e99;font-style:italic;font-weight:bold;font-size:125%}.newscaster{color:maroon}.role_header{color:#e92d2d;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.role_body{color:#3a3ae9;display:block;text-align:center;font-size:125%}.round_header{color:#e92d2d;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.round_body{color:#c5c5c5;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.announce_header{color:#cecece;font-weight:bold;font-size:150%}.announce_header_blue{color:#7575f3;font-weight:bold;font-size:150%}.announce_header_admin{color:#7575f3;font-weight:bold;font-size:150%}.announce_body{color:#e92d2d;font-weight:normal;font-size:125%}.centerbold{display:block;text-align:center;font-weight:bold}.mod{color:#917455;font-weight:bold}.modooc{color:#184880;font-weight:bold}.adminmod{color:#7c440c;font-weight:bold}.mentorsay{color:#d4af57;font-weight:bold}.mentorhelp{color:#090;font-weight:bold}.mentorbody{color:#da6200;font-weight:bold}.mentorstaff{color:#b5850d;font-weight:bold}.staffsay{color:#b5850d;font-weight:bold}.tajaran{color:#803b56}.tajaran_signlang{color:#941c1c}.skrell{color:#00ced1}.soghun{color:#228b22}.changeling{color:purple}.vox{color:#a0a}.monkey{color:#966c47}.german{color:#858f1e;font-family:"Times New Roman",Times,serif}.spanish{color:#cf982b}.japanese{color:#940927}.chinese{color:#fe1919}.zombie{color:#2dacb1;font-style:italic}.rough{font-family:trebuchet-ms,cursive,sans-serif}.commando{color:#fe9b24;font-style:bold}.say_quote{font-family:Georgia,Verdana,sans-serif}.admin .message{color:#314cad}.admin .prefix{font-weight:bolder}.pm{font-size:110%}.deadsay{color:#8b4dff}.retro_translator{font-weight:bold}.yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.examine_block{background:#1b1c1e;border:1px solid #a4bad6;margin:.5em;padding:.5em .75em}.examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.tooltip{font-style:italic;border-bottom:1px dashed #fff}
-.theme-light .color-black{color:#000 !important}.theme-light .color-white{color:#e6e6e6 !important}.theme-light .color-red{color:#c82121 !important}.theme-light .color-orange{color:#e6630d !important}.theme-light .color-yellow{color:#e5c304 !important}.theme-light .color-olive{color:#a3b816 !important}.theme-light .color-green{color:#1d9f3b !important}.theme-light .color-teal{color:#00a39c !important}.theme-light .color-blue{color:#1e78bb !important}.theme-light .color-dark-blue{color:#004274 !important}.theme-light .color-violet{color:#5a30b5 !important}.theme-light .color-purple{color:#932eb4 !important}.theme-light .color-pink{color:#db228a !important}.theme-light .color-brown{color:#955d39 !important}.theme-light .color-grey{color:#e6e6e6 !important}.theme-light .color-light-grey{color:#999 !important}.theme-light .color-good{color:#529923 !important}.theme-light .color-average{color:#da810e !important}.theme-light .color-bad{color:#c82121 !important}.theme-light .color-label{color:#353535 !important}.theme-light .color-xeno{color:#4a3253 !important}.theme-light .color-bg-black{background-color:#000 !important}.theme-light .color-bg-white{background-color:#bfbfbf !important}.theme-light .color-bg-red{background-color:#a61c1c !important}.theme-light .color-bg-orange{background-color:#c0530b !important}.theme-light .color-bg-yellow{background-color:#bfa303 !important}.theme-light .color-bg-olive{background-color:#889912 !important}.theme-light .color-bg-green{background-color:#188532 !important}.theme-light .color-bg-teal{background-color:#008882 !important}.theme-light .color-bg-blue{background-color:#19649c !important}.theme-light .color-bg-dark-blue{background-color:#003761 !important}.theme-light .color-bg-violet{background-color:#4b2897 !important}.theme-light .color-bg-purple{background-color:#7a2696 !important}.theme-light .color-bg-pink{background-color:#b61d73 !important}.theme-light .color-bg-brown{background-color:#7c4d2f !important}.theme-light .color-bg-grey{background-color:#bfbfbf !important}.theme-light .color-bg-light-grey{background-color:gray !important}.theme-light .color-bg-good{background-color:#44801d !important}.theme-light .color-bg-average{background-color:#b56b0b !important}.theme-light .color-bg-bad{background-color:#a61c1c !important}.theme-light .color-bg-label{background-color:#2c2c2c !important}.theme-light .color-bg-xeno{background-color:#3e2945 !important}.theme-light .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#fff}.theme-light .Tabs--fill{height:100%}.theme-light .Section .Tabs{background-color:transparent}.theme-light .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-light .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-light .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-light .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-light .Tabs--horizontal:last-child{margin-bottom:0}.theme-light .Tabs__Tab{flex-grow:0}.theme-light .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-light .Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(0,0,0,.5);min-height:2.25em;min-width:4em}.theme-light .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.theme-light .Tab--selected{background-color:rgba(255,255,255,.125);color:#404040}.theme-light .Tab__text{flex-grow:1;margin:0 .5em}.theme-light .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-light .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-light .Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-light .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #000}.theme-light .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-light .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #000}.theme-light .Tab--selected.Tab--color--black{color:#404040}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#000}.theme-light .Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#000}.theme-light .Tab--selected.Tab--color--white{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--red{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--orange{color:#f48942}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#e6630d}.theme-light .Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#e6630d}.theme-light .Tab--selected.Tab--color--yellow{color:#fcdd33}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#e5c304}.theme-light .Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#e5c304}.theme-light .Tab--selected.Tab--color--olive{color:#d0e732}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#a3b816}.theme-light .Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#a3b816}.theme-light .Tab--selected.Tab--color--green{color:#33da5a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#1d9f3b}.theme-light .Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#1d9f3b}.theme-light .Tab--selected.Tab--color--teal{color:#00faef}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00a39c}.theme-light .Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00a39c}.theme-light .Tab--selected.Tab--color--blue{color:#419ce1}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#1e78bb}.theme-light .Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#1e78bb}.theme-light .Tab--selected.Tab--color--dark-blue{color:#0079d7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#004274}.theme-light .Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#004274}.theme-light .Tab--selected.Tab--color--violet{color:#7f58d3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#5a30b5}.theme-light .Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#5a30b5}.theme-light .Tab--selected.Tab--color--purple{color:#b455d4}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#932eb4}.theme-light .Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#932eb4}.theme-light .Tab--selected.Tab--color--pink{color:#e558a7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#db228a}.theme-light .Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#db228a}.theme-light .Tab--selected.Tab--color--brown{color:#c0825a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#955d39}.theme-light .Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#955d39}.theme-light .Tab--selected.Tab--color--grey{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--light-grey{color:#b3b3b3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#999}.theme-light .Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#999}.theme-light .Tab--selected.Tab--color--good{color:#77d23b}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#529923}.theme-light .Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#529923}.theme-light .Tab--selected.Tab--color--average{color:#f3a23a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#da810e}.theme-light .Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#da810e}.theme-light .Tab--selected.Tab--color--bad{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--label{color:#686868}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#353535}.theme-light .Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#353535}.theme-light .Tab--selected.Tab--color--xeno{color:#7e558e}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#4a3253}.theme-light .Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#4a3253}.theme-light .Section{position:relative;margin-bottom:.5em;background-color:#fff;background-color:#fff;box-sizing:border-box}.theme-light .Section:last-child{margin-bottom:0}.theme-light .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-light .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-light .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-light .Section__rest{position:relative}.theme-light .Section__content{padding:.66em .5em}.theme-light .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-light .Section--fill{display:flex;flex-direction:column;height:100%}.theme-light .Section--fill>.Section__rest{flex-grow:1}.theme-light .Section--fill>.Section__rest>.Section__content{height:100%}.theme-light .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-light .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-light .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-light .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.theme-light .Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.theme-light .Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.theme-light .Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.theme-light .Section .Section:first-child{margin-top:-0.5em}.theme-light .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-light .Section .Section .Section .Section__titleText{font-size:1em}.theme-light .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-light .Button:last-child{margin-right:0;margin-bottom:0}.theme-light .Button .fa,.theme-light .Button .fas,.theme-light .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-light .Button--hasContent .fa,.theme-light .Button--hasContent .fas,.theme-light .Button--hasContent .far{margin-right:.25em}.theme-light .Button--hasContent.Button--iconPosition--right .fa,.theme-light .Button--hasContent.Button--iconPosition--right .fas,.theme-light .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-light .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-light .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-light .Button--circular{border-radius:50%}.theme-light .Button--compact{padding:0 .25em;line-height:1.333em}.theme-light .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-light .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--black:hover,.theme-light .Button--color--black:focus{background-color:#131313;color:#fff}.theme-light .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--white:hover,.theme-light .Button--color--white:focus{background-color:#efefef;color:#000}.theme-light .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--red:hover,.theme-light .Button--color--red:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#c0530b;color:#fff}.theme-light .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--orange:hover,.theme-light .Button--color--orange:focus{background-color:#ea7426;color:#fff}.theme-light .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#bfa303;color:#fff}.theme-light .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--yellow:hover,.theme-light .Button--color--yellow:focus{background-color:#efce17;color:#fff}.theme-light .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#889912;color:#fff}.theme-light .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--olive:hover,.theme-light .Button--color--olive:focus{background-color:#afc328;color:#fff}.theme-light .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#188532;color:#fff}.theme-light .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--green:hover,.theme-light .Button--color--green:focus{background-color:#2fac4c;color:#fff}.theme-light .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#008882;color:#fff}.theme-light .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--teal:hover,.theme-light .Button--color--teal:focus{background-color:#13afa9;color:#fff}.theme-light .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#19649c;color:#fff}.theme-light .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--blue:hover,.theme-light .Button--color--blue:focus{background-color:#3086c7;color:#fff}.theme-light .Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003761;color:#fff}.theme-light .Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--dark-blue:hover,.theme-light .Button--color--dark-blue:focus{background-color:#135283;color:#fff}.theme-light .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#4b2897;color:#fff}.theme-light .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--violet:hover,.theme-light .Button--color--violet:focus{background-color:#6a41c1;color:#fff}.theme-light .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#7a2696;color:#fff}.theme-light .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--purple:hover,.theme-light .Button--color--purple:focus{background-color:#a03fc0;color:#fff}.theme-light .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#b61d73;color:#fff}.theme-light .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--pink:hover,.theme-light .Button--color--pink:focus{background-color:#da3f96;color:#fff}.theme-light .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#7c4d2f;color:#fff}.theme-light .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--brown:hover,.theme-light .Button--color--brown:focus{background-color:#a26c49;color:#fff}.theme-light .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--grey:hover,.theme-light .Button--color--grey:focus{background-color:#efefef;color:#000}.theme-light .Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:gray;color:#fff}.theme-light .Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--light-grey:hover,.theme-light .Button--color--light-grey:focus{background-color:#a6a6a6;color:#fff}.theme-light .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#44801d;color:#fff}.theme-light .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--good:hover,.theme-light .Button--color--good:focus{background-color:#62a635;color:#fff}.theme-light .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#b56b0b;color:#fff}.theme-light .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--average:hover,.theme-light .Button--color--average:focus{background-color:#e48f20;color:#fff}.theme-light .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--bad:hover,.theme-light .Button--color--bad:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#2c2c2c;color:#fff}.theme-light .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--label:hover,.theme-light .Button--color--label:focus{background-color:#464646;color:#fff}.theme-light .Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#3e2945;color:#fff}.theme-light .Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--xeno:hover,.theme-light .Button--color--xeno:focus{background-color:#5a4363;color:#fff}.theme-light .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#bbb;color:#000}.theme-light .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--default:hover,.theme-light .Button--color--default:focus{background-color:#eaeaea;color:#000}.theme-light .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-light .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--caution:hover,.theme-light .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-light .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-light .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--danger:hover,.theme-light .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-light .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#eee;color:#000;background-color:rgba(238,238,238,0);color:rgba(0,0,0,.5)}.theme-light .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--transparent:hover,.theme-light .Button--color--transparent:focus{background-color:#fcfcfc;color:#000}.theme-light .Button--disabled{background-color:#363636 !important}.theme-light .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0668b8;color:#fff}.theme-light .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--selected:hover,.theme-light .Button--selected:focus{background-color:#1a8be7;color:#fff}.theme-light .Button--flex{display:inline-flex;flex-direction:column}.theme-light .Button--flex--fluid{width:100%}.theme-light .Button--verticalAlignContent--top{justify-content:flex-start}.theme-light .Button--verticalAlignContent--middle{justify-content:center}.theme-light .Button--verticalAlignContent--bottom{justify-content:flex-end}.theme-light .Button__content{display:block;align-self:stretch}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#353535;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-light .NumberInput--fluid{display:block}.theme-light .NumberInput__content{margin-left:.5em}.theme-light .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-light .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #353535;background-color:#353535}.theme-light .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#fff;color:#000;text-align:right}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .TextArea{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;background-color:#fff;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.theme-light .TextArea--fluid{display:block;width:auto;height:auto}.theme-light .TextArea--noborder{border:0px}.theme-light .TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.theme-light .TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.theme-light .TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.theme-light .Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.theme-light .Knob:after{content:".";color:transparent;line-height:2.5em}.theme-light .Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.theme-light .Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.theme-light .Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.theme-light .Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.theme-light .Knob__ringTrackPivot{transform:rotateZ(135deg)}.theme-light .Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.theme-light .Knob__ringFillPivot{transform:rotateZ(135deg)}.theme-light .Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.theme-light .Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.theme-light .Knob--color--black .Knob__ringFill{stroke:#000}.theme-light .Knob--color--white .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--red .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--orange .Knob__ringFill{stroke:#e6630d}.theme-light .Knob--color--yellow .Knob__ringFill{stroke:#e5c304}.theme-light .Knob--color--olive .Knob__ringFill{stroke:#a3b816}.theme-light .Knob--color--green .Knob__ringFill{stroke:#1d9f3b}.theme-light .Knob--color--teal .Knob__ringFill{stroke:#00a39c}.theme-light .Knob--color--blue .Knob__ringFill{stroke:#1e78bb}.theme-light .Knob--color--dark-blue .Knob__ringFill{stroke:#004274}.theme-light .Knob--color--violet .Knob__ringFill{stroke:#5a30b5}.theme-light .Knob--color--purple .Knob__ringFill{stroke:#932eb4}.theme-light .Knob--color--pink .Knob__ringFill{stroke:#db228a}.theme-light .Knob--color--brown .Knob__ringFill{stroke:#955d39}.theme-light .Knob--color--grey .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--light-grey .Knob__ringFill{stroke:#999}.theme-light .Knob--color--good .Knob__ringFill{stroke:#529923}.theme-light .Knob--color--average .Knob__ringFill{stroke:#da810e}.theme-light .Knob--color--bad .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--label .Knob__ringFill{stroke:#353535}.theme-light .Knob--color--xeno .Knob__ringFill{stroke:#4a3253}.theme-light .Slider{cursor:e-resize}.theme-light .Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.theme-light .Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #000}.theme-light .Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #000}.theme-light .Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.theme-light .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-light .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-light .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-light .ProgressBar--color--default{border:.0833333333em solid #bfbfbf}.theme-light .ProgressBar--color--default .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--black{border-color:#000 !important}.theme-light .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-light .ProgressBar--color--white{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--white .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--red{border-color:#a61c1c !important}.theme-light .ProgressBar--color--red .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--orange{border-color:#c0530b !important}.theme-light .ProgressBar--color--orange .ProgressBar__fill{background-color:#c0530b}.theme-light .ProgressBar--color--yellow{border-color:#bfa303 !important}.theme-light .ProgressBar--color--yellow .ProgressBar__fill{background-color:#bfa303}.theme-light .ProgressBar--color--olive{border-color:#889912 !important}.theme-light .ProgressBar--color--olive .ProgressBar__fill{background-color:#889912}.theme-light .ProgressBar--color--green{border-color:#188532 !important}.theme-light .ProgressBar--color--green .ProgressBar__fill{background-color:#188532}.theme-light .ProgressBar--color--teal{border-color:#008882 !important}.theme-light .ProgressBar--color--teal .ProgressBar__fill{background-color:#008882}.theme-light .ProgressBar--color--blue{border-color:#19649c !important}.theme-light .ProgressBar--color--blue .ProgressBar__fill{background-color:#19649c}.theme-light .ProgressBar--color--dark-blue{border-color:#003761 !important}.theme-light .ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003761}.theme-light .ProgressBar--color--violet{border-color:#4b2897 !important}.theme-light .ProgressBar--color--violet .ProgressBar__fill{background-color:#4b2897}.theme-light .ProgressBar--color--purple{border-color:#7a2696 !important}.theme-light .ProgressBar--color--purple .ProgressBar__fill{background-color:#7a2696}.theme-light .ProgressBar--color--pink{border-color:#b61d73 !important}.theme-light .ProgressBar--color--pink .ProgressBar__fill{background-color:#b61d73}.theme-light .ProgressBar--color--brown{border-color:#7c4d2f !important}.theme-light .ProgressBar--color--brown .ProgressBar__fill{background-color:#7c4d2f}.theme-light .ProgressBar--color--grey{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--grey .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--light-grey{border-color:gray !important}.theme-light .ProgressBar--color--light-grey .ProgressBar__fill{background-color:gray}.theme-light .ProgressBar--color--good{border-color:#44801d !important}.theme-light .ProgressBar--color--good .ProgressBar__fill{background-color:#44801d}.theme-light .ProgressBar--color--average{border-color:#b56b0b !important}.theme-light .ProgressBar--color--average .ProgressBar__fill{background-color:#b56b0b}.theme-light .ProgressBar--color--bad{border-color:#a61c1c !important}.theme-light .ProgressBar--color--bad .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--label{border-color:#2c2c2c !important}.theme-light .ProgressBar--color--label .ProgressBar__fill{background-color:#2c2c2c}.theme-light .ProgressBar--color--xeno{border-color:#3e2945 !important}.theme-light .ProgressBar--color--xeno .ProgressBar__fill{background-color:#3e2945}.theme-light .Chat{color:#000}.theme-light .Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.theme-light .Chat__badge:before{content:"x"}.theme-light .Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.theme-light .Chat__scrollButton{position:fixed;right:2em;bottom:1em}.theme-light .Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.theme-light .Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#fff}.theme-light .Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.theme-light .Chat__highlight{color:#000}.theme-light .Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.theme-light .ChatMessage{word-wrap:break-word}.theme-light .ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.theme-light .ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.theme-light .Layout,.theme-light .Layout *{scrollbar-base-color:#f2f2f2;scrollbar-face-color:#d6d6d6;scrollbar-3dlight-color:#eee;scrollbar-highlight-color:#eee;scrollbar-track-color:#f2f2f2;scrollbar-arrow-color:#777;scrollbar-shadow-color:#d6d6d6}.theme-light .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-light .Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.theme-light .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#eee;background-image:linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%)}.theme-light .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-light .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-light .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-light .Window__contentPadding:after{height:0}.theme-light .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-light .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(252,252,252,.25);pointer-events:none}.theme-light .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-light .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-light .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-light .TitleBar{background-color:#eee;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-light .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#eee;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-light .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-light .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-light .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-light .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-light .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-light .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-light .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-light html,.theme-light body{padding:0;margin:0;height:100%;color:#000}.theme-light body{background:#fff;font-family:Verdana,sans-serif;font-size:13px;line-height:1.2;overflow-x:hidden;overflow-y:scroll;word-wrap:break-word}.theme-light em{font-style:normal;font-weight:bold}.theme-light img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.theme-light img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}.theme-light a{color:blue}.theme-light a.visited{color:#f0f}.theme-light a:visited{color:#f0f}.theme-light a.popt{text-decoration:none}.theme-light .popup{position:fixed;top:50%;left:50%;background:#ddd}.theme-light .popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.theme-light .popup .close:hover{background:#999}.theme-light .popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.theme-light .popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.theme-light .popup input[type=text]:hover,.theme-light .popup input[type=text]:active,.theme-light .popup input[type=text]:focus{border-color:green}.theme-light .popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.theme-light .popup input[type=submit]:hover,.theme-light .popup input[type=submit]:focus,.theme-light .popup input[type=submit]:active{background:#aaa;cursor:pointer}.theme-light .changeFont{padding:10px}.theme-light .changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.theme-light .changeFont a:hover{background:#ccc}.theme-light .highlightPopup{padding:10px;text-align:center}.theme-light .highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.theme-light .highlightPopup input.highlightColor{background-color:#ff0}.theme-light .highlightPopup input.highlightTermSubmit{margin-top:5px}.theme-light .contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.theme-light .contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.theme-light .contextMenu a:hover{background-color:#ccc}.theme-light .filterMessages{padding:5px}.theme-light .filterMessages div{padding:2px 0}.theme-light .icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.theme-light .motd{color:#638500;font-family:Verdana,sans-serif;white-space:normal}.theme-light .motd h1,.theme-light .motd h2,.theme-light .motd h3,.theme-light .motd h4,.theme-light .motd h5,.theme-light .motd h6{color:#638500;text-decoration:underline}.theme-light .motd a,.theme-light .motd a:link,.theme-light .motd a:visited,.theme-light .motd a:active,.theme-light .motd a:hover{color:#638500}.theme-light .bold,.theme-light .name,.theme-light .prefix,.theme-light .ooc,.theme-light .looc,.theme-light .adminooc,.theme-light .admin,.theme-light .medal,.theme-light .yell{font-weight:bold}.theme-light .italic,.theme-light .italics{font-style:italic}.theme-light .highlight{background:#ff0}.theme-light h1,.theme-light h2,.theme-light h3,.theme-light h4,.theme-light h5,.theme-light h6{color:blue;font-family:Georgia,Verdana,sans-serif}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light em{font-style:normal;font-weight:bold}.theme-light .ooc{font-weight:bold}.theme-light .adminobserverooc{color:#09c;font-weight:bold}.theme-light .adminooc{color:#700038;font-weight:bold}.theme-light .adminsay{color:#ff4500;font-weight:bold}.theme-light .admin{color:#4473ff;font-weight:bold}.theme-light .name{font-weight:bold}.theme-light .deadsay{color:#5c00e6}.theme-light .binarysay{color:#20c20e;background-color:#000;display:block}.theme-light .binarysay a{color:lime}.theme-light .binarysay a:active,.theme-light .binarysay a:visited{color:#8f8}.theme-light .radio{color:green}.theme-light .sciradio{color:#939}.theme-light .comradio{color:#948f02}.theme-light .secradio{color:#a30000}.theme-light .medradio{color:#337296}.theme-light .engradio{color:#fb5613}.theme-light .sentryradio{color:#844300}.theme-light .suppradio{color:#a8732b}.theme-light .servradio{color:#6eaa2c}.theme-light .syndradio{color:#6d3f40}.theme-light .gangradio{color:#ac2ea1}.theme-light .centcomradio{color:#686868}.theme-light .aiprivradio{color:#f0f}.theme-light .redteamradio{color:red}.theme-light .blueteamradio{color:blue}.theme-light .greenteamradio{color:lime}.theme-light .yellowteamradio{color:#d1ba22}.theme-light .yell{font-weight:bold}.theme-light .alert{color:red}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light .userdanger{color:red;font-weight:bold;font-size:185%}.theme-light .bolddanger{color:red;font-weight:bold}.theme-light .danger{color:red}.theme-light .tinydanger{color:red;font-size:85%}.theme-light .smalldanger{color:red;font-size:90%}.theme-light .warning{color:red;font-style:italic}.theme-light .alertwarning{color:red;font-weight:bold}.theme-light .boldwarning{color:red;font-style:italic;font-weight:bold}.theme-light .announce{color:#228b22;font-weight:bold}.theme-light .boldannounce{color:red;font-weight:bold}.theme-light .minorannounce{font-weight:bold;font-size:185%}.theme-light .greenannounce{color:lime;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .info{color:#00c}.theme-light .notice{color:#009}.theme-light .staff_ic{color:#009}.theme-light .tinynotice{color:#009;font-size:85%}.theme-light .tinynoticeital{color:#009;font-style:italic;font-size:85%}.theme-light .smallnotice{color:#009;font-size:90%}.theme-light .smallnoticeital{color:#009;font-style:italic;font-size:90%}.theme-light .boldnotice{color:#009;font-weight:bold}.theme-light .hear{color:#009;font-style:italic}.theme-light .adminnotice{color:blue}.theme-light .adminhelp{color:red;font-weight:bold}.theme-light .unconscious{color:blue;font-weight:bold}.theme-light .suicide{color:#ff5050;font-style:italic}.theme-light .green{color:#03ff39}.theme-light .grey{color:#838383}.theme-light .red{color:red}.theme-light .blue{color:blue}.theme-light .nicegreen{color:#14a833}.theme-light .boldnicegreen{color:#14a833;font-weight:bold}.theme-light .cult{color:#973e3b}.theme-light .cultitalic{color:#973e3b;font-style:italic}.theme-light .cultbold{color:#973e3b;font-style:italic;font-weight:bold}.theme-light .cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .narsie{color:#973e3b;font-weight:bold;font-size:925%}.theme-light .narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.theme-light .colossus{color:#7f282a;font-size:310%}.theme-light .hierophant{color:#609;font-weight:bold;font-style:italic}.theme-light .hierophant_warning{color:#609;font-style:italic}.theme-light .purple{color:#5e2d79}.theme-light .holoparasite{color:#35333a}.theme-light .revennotice{color:#1d2953}.theme-light .revenboldnotice{color:#1d2953;font-weight:bold}.theme-light .revenbignotice{color:#1d2953;font-weight:bold;font-size:185%}.theme-light .revenminor{color:#823abb}.theme-light .revenwarning{color:#760fbb;font-style:italic}.theme-light .revendanger{color:#760fbb;font-weight:bold;font-size:185%}.theme-light .deconversion_message{color:#5000a0;font-size:185%;font-style:italic}.theme-light .ghostalert{color:#5c00e6;font-style:italic;font-weight:bold}.theme-light .alien{color:#543354}.theme-light .noticealien{color:#00c000}.theme-light .alertalien{color:#00c000;font-weight:bold}.theme-light .changeling{color:purple;font-style:italic}.theme-light .alertsyndie{color:red;font-size:185%;font-weight:bold}.theme-light .spider{color:#4d004d;font-weight:bold;font-size:185%}.theme-light .interface{color:#303}.theme-light .sans{font-family:"Comic Sans MS",cursive,sans-serif}.theme-light .papyrus{font-family:"Papyrus",cursive,sans-serif}.theme-light .robot{font-family:"Courier New",cursive,sans-serif}.theme-light .tape_recorder{color:maroon;font-family:"Courier New",cursive,sans-serif}.theme-light .command_headset{font-weight:bold;font-size:160%}.theme-light .small{font-size:60%}.theme-light .big{font-size:185%}.theme-light .reallybig{font-size:245%}.theme-light .extremelybig{font-size:310%}.theme-light .greentext{color:lime;font-size:185%}.theme-light .redtext{color:red;font-size:185%}.theme-light .clown{color:#ff69bf;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.theme-light .singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.theme-light .his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.theme-light .hypnophrase{color:#0d0d0d;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#0d0d0d}25%{color:#410194}50%{color:#7f17d8}75%{color:#410194}100%{color:#3bb5d3}}.theme-light .phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#0d0d0d}50%{color:#d00}100%{color:#0d0d0d}}.theme-light .icon{height:1em;width:auto}.theme-light .bigicon{font-size:2.5em}.theme-light .memo{color:#638500;text-align:center}.theme-light .memoedit{text-align:center;font-size:125%}.theme-light .abductor{color:purple;font-style:italic}.theme-light .mind_control{color:#a00d6f;font-size:100%;font-weight:bold;font-style:italic}.theme-light .slime{color:#00ced1}.theme-light .drone{color:#848482}.theme-light .monkey{color:#975032}.theme-light .swarmer{color:#2c75ff}.theme-light .resonate{color:#298f85}.theme-light .monkeyhive{color:#774704}.theme-light .monkeylead{color:#774704;font-size:80%}.theme-light .connectionClosed,.theme-light .fatalError{background:red;color:#fff;padding:5px}.theme-light .connectionClosed.restored{background:green}.theme-light .internal.boldnshit{color:blue;font-weight:bold}.theme-light .text-normal{font-weight:normal;font-style:normal}.theme-light .hidden{display:none;visibility:hidden}.theme-light .ml-1{margin-left:1em}.theme-light .ml-2{margin-left:2em}.theme-light .ml-3{margin-left:3em}.theme-light .xooc{color:#6c0094;font-weight:bold;font-size:140%}.theme-light .mooc{color:#090;font-weight:bold;font-size:140%}.theme-light .yooc{color:#999600;font-weight:bold;font-size:140%}.theme-light .headminsay{color:#5a0a7f;font-weight:bold}.theme-light .radio{color:#4e4e4e}.theme-light .deptradio{color:#939}.theme-light .comradio{color:#004080}.theme-light .centradio{color:#5c5c8a}.theme-light .cryoradio{color:#554e3f}.theme-light .hcradio{color:#318779}.theme-light .pvstradio{color:#9b0612}.theme-light .airadio{color:#f0f}.theme-light .secradio{color:#a30000}.theme-light .engradio{color:#a66300}.theme-light .sentryradio{color:#844300}.theme-light .medradio{color:#008160}.theme-light .supradio{color:#5f4519}.theme-light .jtacradio{color:#702963}.theme-light .intelradio{color:#027d02}.theme-light .wyradio{color:#fe9b24}.theme-light .pmcradio{color:#136957}.theme-light .vairadio{color:#943d0a}.theme-light .cmbradio{color:#1b748c}.theme-light .clfradio{color:#6f679c}.theme-light .alpharadio{color:#ea0000}.theme-light .bravoradio{color:#c68610}.theme-light .charlieradio{color:#a5a}.theme-light .deltaradio{color:#007fcf}.theme-light .echoradio{color:#3a7e65}.theme-light .medium{font-size:110%}.theme-light .big{font-size:115%}.theme-light .large{font-size:125%}.theme-light .extra_large{font-size:130%}.theme-light .huge{font-size:150%}.theme-light .underline{text-decoration:underline}.theme-light .orange{color:#eca100}.theme-light .normal{font-style:normal}.theme-light .attack{color:red}.theme-light .moderate{color:#c00}.theme-light .disarm{color:#900}.theme-light .passive{color:#600}.theme-light .helpful{color:#368f31}.theme-light .scanner{color:red}.theme-light .scannerb{color:red;font-weight:bold}.theme-light .scannerburn{color:orange}.theme-light .scannerburnb{color:orange;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .debuginfo{color:#493d26;font-style:italic}.theme-light .xenonotice{color:#2a623d}.theme-light .xenoboldnotice{color:#2a623d;font-style:italic}.theme-light .xenowarning{color:#2a623d;font-style:italic}.theme-light .xenominorwarning{color:#2a623d;font-weight:bold;font-style:italic}.theme-light .xenodanger{color:#2a623d;font-weight:bold}.theme-light .avoidharm{color:#72a0e5;font-weight:bold}.theme-light .highdanger{color:red;font-weight:bold;font-size:140%}.theme-light .xenohighdanger{color:#2a623d;font-weight:bold;font-size:140%}.theme-light .xenoannounce{color:#1a472a;font-family:book-antiqua;font-weight:bold;font-size:140%}.theme-light .yautjabold{color:purple;font-weight:bold}.theme-light .yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.theme-light .objectivebig{font-weight:bold;font-size:130%}.theme-light .objectivegreen{color:lime}.theme-light .objectivered{color:red}.theme-light .objectivesuccess{color:lime;font-weight:bold;font-size:110%}.theme-light .objectivefail{color:red;font-weight:bold;font-size:110%}.theme-light .xenotalk,.theme-light .xeno{color:#900090;font-style:italic}.theme-light .xenoleader{color:#730d73;font-style:italic;font-size:125%}.theme-light .xenoqueen{color:#730d73;font-style:italic;font-weight:bold;font-size:125%}.theme-light .newscaster{color:maroon}.theme-light .role_header{color:#db0000;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.theme-light .role_body{color:#009;display:block;text-align:center;font-size:125%}.theme-light .round_header{color:#db0000;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.theme-light .round_body{color:#001427;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.theme-light .event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.theme-light .announce_header{color:#000;font-weight:bold;font-size:150%}.theme-light .announce_header_blue{color:#009;font-weight:bold;font-size:150%}.theme-light .announce_body{color:red;font-weight:normal;font-size:125%}.theme-light .centerbold{display:block;text-align:center;font-weight:bold}.theme-light .mod{color:#735638;font-weight:bold}.theme-light .modooc{color:#184880;font-weight:bold}.theme-light .adminmod{color:#402a14;font-weight:bold}.theme-light .mentorsay{color:#b38c32;font-weight:bold}.theme-light .mentorhelp{color:#007e00;font-weight:bold}.theme-light .mentorbody{color:#da6200;font-weight:bold}.theme-light .mentorstaff{color:#876101;font-weight:bold}.theme-light .staffsay{color:#876101;font-weight:bold}.theme-light .tajaran{color:#803b56}.theme-light .tajaran_signlang{color:#941c1c}.theme-light .skrell{color:#00ced1}.theme-light .soghun{color:#228b22}.theme-light .changeling{color:purple}.theme-light .vox{color:#a0a}.theme-light .monkey{color:#966c47}.theme-light .german{color:#858f1e;font-family:"Times New Roman",Times,serif}.theme-light .spanish{color:#cf982b}.theme-light .japanese{color:#940927}.theme-light .chinese{color:#fe1919}.theme-light .zombie{color:#216163;font-style:italic}.theme-light .commando{color:#fe9b24;font-style:bold}.theme-light .rough{font-family:trebuchet-ms,cursive,sans-serif}.theme-light .say_quote{font-family:Georgia,Verdana,sans-serif}.theme-light .admin .message{color:#314cad}.theme-light .admin .prefix{font-weight:bolder}.theme-light .pm{font-size:110%}.theme-light .retro_translator{font-weight:bold}.theme-light .yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.theme-light .examine_block{background:#f2f7fa;border:1px solid #111a27;margin:.5em;padding:.5em .75em}.theme-light .examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.theme-light .tooltip{font-style:italic;border-bottom:1px dashed #000}
+html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-dark-blue{color:#005fa7 !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-light-grey{color:#b3b3b3 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-xeno{color:#664573 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-dark-blue{background-color:#003e6e !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-light-grey{background-color:#919191 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.color-bg-xeno{background-color:#462f4e !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:transparent !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-dark-blue{outline:.167rem solid #005fa7 !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-light-grey{outline:.167rem solid #b3b3b3 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.outline-color-xeno{outline:.167rem solid #664573 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003e6e;color:#fff}.Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.Button--color--dark-blue:hover,.Button--color--dark-blue:focus{background-color:#135b92;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:#919191;color:#fff}.Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.Button--color--light-grey:hover,.Button--color--light-grey:focus{background-color:#bababa;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#462f4e;color:#fff}.Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.Button--color--xeno:hover,.Button--color--xeno:focus{background-color:#64496d;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#202020;color:#fff;background-color:rgba(32,32,32,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#383838;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.Button--flex{display:inline-flex;flex-direction:column}.Button--flex--fluid{width:100%}.Button--verticalAlignContent--top{justify-content:flex-start}.Button--verticalAlignContent--middle{justify-content:center}.Button--verticalAlignContent--bottom{justify-content:flex-end}.Button__content{display:block;align-self:stretch}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--dark-blue .Knob__ringFill{stroke:#005fa7}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--light-grey .Knob__ringFill{stroke:#b3b3b3}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.Knob--color--xeno .Knob__ringFill{stroke:#664573}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left}.LabeledList__label--nowrap{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.Modal{background-color:#202020;max-width:calc(100% - 1rem);padding:1rem}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--dark-blue{color:#fff;background-color:#02121f}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--light-grey{color:#fff;background-color:#6a6a6a}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--color--xeno{color:#fff;background-color:#19161b}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border-color:#000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border-color:#d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border-color:#bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border-color:#d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border-color:#d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border-color:#9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border-color:#1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border-color:#009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border-color:#1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--dark-blue{border-color:#003e6e !important}.ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003e6e}.ProgressBar--color--violet{border-color:#552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border-color:#8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border-color:#cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border-color:#8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border-color:#646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--light-grey{border-color:#919191 !important}.ProgressBar--color--light-grey .ProgressBar__fill{background-color:#919191}.ProgressBar--color--good{border-color:#4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border-color:#cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border-color:#bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border-color:#657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.ProgressBar--color--xeno{border-color:#462f4e !important}.ProgressBar--color--xeno .ProgressBar__fill{background-color:#462f4e}.Section{position:relative;margin-bottom:.5em;background-color:#131313;background-color:#131313;box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#131313}.Tabs--fill{height:100%}.Section .Tabs{background-color:transparent}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--dark-blue{color:#008ffd}.Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#005fa7}.Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#005fa7}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--light-grey{color:#c6c6c6}.Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#b3b3b3}.Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#b3b3b3}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Tab--selected.Tab--color--xeno{color:#9366a3}.Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#664573}.Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#664573}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea--noborder{border:0px}.TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.Chat{color:#abc6ec}.Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.Chat__badge:before{content:"x"}.Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.Chat__scrollButton{position:fixed;right:2em;bottom:1em}.Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#131313}.Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.Chat__highlight{color:#000}.Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.ChatMessage{word-wrap:break-word}.ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.Ping{position:relative;padding:.125em .25em;border:.0833333333em solid rgba(140,140,140,.5);border-radius:.25em;width:3.75em;text-align:right}.Ping__indicator{content:"";position:absolute;top:.5em;left:.5em;width:.5em;height:.5em;background-color:#888;border-radius:.25em}.Notifications{position:absolute;bottom:1em;left:1em;right:2em}.Notification{color:#fff;background-color:crimson;padding:.5em;margin:1em 0}.Notification:first-child{margin-top:0}.Notification:last-child{margin-bottom:0}.Layout,.Layout *{scrollbar-base-color:#181818;scrollbar-face-color:#363636;scrollbar-3dlight-color:#202020;scrollbar-highlight-color:#202020;scrollbar-track-color:#181818;scrollbar-arrow-color:#909090;scrollbar-shadow-color:#363636}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#202020;background-image:linear-gradient(to bottom, #202020 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(56,56,56,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}em{font-style:normal;font-weight:bold}img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}a{color:#397ea5}a.visited{color:#7c00e6}a:visited{color:#7c00e6}a.popt{text-decoration:none}.popup{position:fixed;top:50%;left:50%;background:#ddd}.popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.popup .close:hover{background:#999}.popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.popup input[type=text]:hover,.popup input[type=text]:active,.popup input[type=text]:focus{border-color:green}.popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.popup input[type=submit]:hover,.popup input[type=submit]:focus,.popup input[type=submit]:active{background:#aaa;cursor:pointer}.changeFont{padding:10px}.changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.changeFont a:hover{background:#ccc}.highlightPopup{padding:10px;text-align:center}.highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.highlightPopup input.highlightColor{background-color:#ff0}.highlightPopup input.highlightTermSubmit{margin-top:5px}.contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.contextMenu a:hover{background-color:#ccc}.filterMessages{padding:5px}.filterMessages div{padding:2px 0}.icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.motd{color:#a4bad6;font-family:Verdana,sans-serif;white-space:normal}.motd h1,.motd h2,.motd h3,.motd h4,.motd h5,.motd h6{color:#a4bad6;text-decoration:underline}.motd a,.motd a:link,.motd a:visited,.motd a:active,.motd a:hover{color:#a4bad6}.bold,.name,.prefix,.ooc,.looc,.adminooc,.admin,.medal,.yell{font-weight:bold}.italic,.italics{font-style:italic}.highlight{background:#ff0}h1,h2,h3,h4,h5,h6{color:#a4bad6;font-family:Georgia,Verdana,sans-serif}h1.alert,h2.alert{color:#a4bad6}em{font-style:normal;font-weight:bold}.ooc{font-weight:bold}.adminobserverooc{color:#09c;font-weight:bold}.adminooc{color:#3d5bc3;font-weight:bold}.adminsay{color:#9611d4;font-weight:bold}.admin{color:#5975da;font-weight:bold}.name{font-weight:bold}.deadsay{color:#e2c1ff}.binarysay{color:#1e90ff}.binarysay a{color:lime}.binarysay a:active,.binarysay a:visited{color:#8f8}.radio{color:#1ecc43}.sciradio{color:#c68cfa}.comradio{color:#fcdf03}.secradio{color:#dd3535}.medradio{color:#57b8f0}.engradio{color:#f37746}.suppradio{color:#b88646}.servradio{color:#6ca729}.syndradio{color:#8f4a4b}.gangradio{color:#ac2ea1}.centcomradio{color:#2681a5}.aiprivradio{color:#d65d95}.redteamradio{color:#f44}.blueteamradio{color:#3434fd}.greenteamradio{color:#34fd34}.yellowteamradio{color:#fdfd34}.yell{font-weight:bold}.alert{color:#d82020}.userdanger{color:#c51e1e;font-weight:bold;font-size:185%}.bolddanger{color:#c51e1e;font-weight:bold}.danger{color:#c51e1e}.warning{color:#c51e1e;font-style:italic}.alertwarning{color:red;font-weight:bold}.boldwarning{color:#c51e1e;font-style:italic;font-weight:bold}.announce{color:#c51e1e;font-weight:bold}.boldannounce{color:#c51e1e;font-weight:bold}.minorannounce{font-weight:bold;font-size:185%}.greenannounce{color:#059223;font-weight:bold}.rose{color:#ff5050}.info{color:#9ab0ff}.notice{color:#6685f5}.staff_ic{color:#6685f5}.tinynotice{color:#6685f5;font-size:85%}.tinynoticeital{color:#6685f5;font-style:italic;font-size:85%}.smallnotice{color:#6685f5;font-size:90%}.smallnoticeital{color:#6685f5;font-style:italic;font-size:90%}.boldnotice{color:#6685f5;font-weight:bold}.hear{color:#6685f5;font-style:italic}.adminnotice{color:#6685f5}.adminhelp{color:red;font-weight:bold}.unconscious{color:#a4bad6;font-weight:bold}.suicide{color:#ff5050;font-style:italic}.green{color:#059223}.grey{color:#838383}.red{color:red}.blue{color:#215cff}.nicegreen{color:#059223}.boldnicegreen{color:#059223;font-weight:bold}.cult{color:#973e3b}.cultitalic{color:#973e3b;font-style:italic}.cultbold{color:#973e3b;font-style:italic;font-weight:bold}.cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.narsie{color:#973e3b;font-weight:bold;font-size:925%}.narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.colossus{color:#7f282a;font-size:310%}.hierophant{color:#b441ee;font-weight:bold;font-style:italic}.hierophant_warning{color:#c56bf1;font-style:italic}.purple{color:#9956d3}.holoparasite{color:#88809c}.revennotice{color:#c099e2}.revenboldnotice{color:#c099e2;font-weight:bold}.revenbignotice{color:#c099e2;font-weight:bold;font-size:185%}.revenminor{color:#823abb}.revenwarning{color:#760fbb;font-style:italic}.revendanger{color:#760fbb;font-weight:bold;font-size:185%}.deconversion_message{color:#a947ff;font-size:185%;font-style:italic}.ghostalert{color:#60f;font-style:italic;font-weight:bold}.alien{color:#855d85}.noticealien{color:#059223}.alertalien{color:#059223;font-weight:bold}.changeling{color:#059223;font-style:italic}.alertsyndie{color:red;font-size:185%;font-weight:bold}.spider{color:#80f;font-weight:bold;font-size:185%}.interface{color:#750e75}.sans{font-family:"Comic Sans MS",cursive,sans-serif}.papyrus{font-family:"Papyrus",cursive,sans-serif}.robot{font-family:"Courier New",cursive,sans-serif}.tape_recorder{color:red;font-family:"Courier New",cursive,sans-serif}.command_headset{font-weight:bold;font-size:160%}.small{font-size:60%}.big{font-size:185%}.reallybig{font-size:245%}.extremelybig{font-size:310%}.greentext{color:#059223;font-size:185%}.redtext{color:#c51e1e;font-size:185%}.clown{color:#ff70c1;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.hypnophrase{color:#202020;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#202020}25%{color:#4b02ac}50%{color:#9f41f1}75%{color:#541c9c}100%{color:#7adbf3}}.phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#f75a5a}50%{color:#d00}100%{color:#f75a5a}}.icon{height:1em;width:auto}.bigicon{font-size:2.5em}.memo{color:#638500;text-align:center}.memoedit{text-align:center;font-size:125%}.abductor{color:#c204c2;font-style:italic}.mind_control{color:#df3da9;font-size:100%;font-weight:bold;font-style:italic}.slime{color:#00ced1}.drone{color:#848482}.monkey{color:#975032}.swarmer{color:#2c75ff}.resonate{color:#298f85}.monkeyhive{color:#a56408}.monkeylead{color:#af6805;font-size:80%}.connectionClosed,.fatalError{background:red;color:#fff;padding:5px}.connectionClosed.restored{background:green}.internal.boldnshit{color:#3d5bc3;font-weight:bold}.text-normal{font-weight:normal;font-style:normal}.hidden{display:none;visibility:hidden}.ml-1{margin-left:1em}.ml-2{margin-left:2em}.ml-3{margin-left:3em}.xooc{color:#ac04e9;font-weight:bold;font-size:140%}.mooc{color:#090;font-weight:bold;font-size:140%}.yooc{color:#999600;font-weight:bold;font-size:140%}.headminsay{color:#653d78;font-weight:bold}.radio{color:#b4b4b4}.deptradio{color:#939}.comradio{color:#779cc2}.centradio{color:#5c5c8a}.hcradio{color:#318779}.pvstradio{color:#9b0612}.cryoradio{color:#ad6d48}.airadio{color:#f0f}.secradio{color:#a52929}.engradio{color:#a66300}.sentryradio{color:#844300}.sentryradio{color:#844300}.medradio{color:#008160}.supradio{color:#ba8e41}.jtacradio{color:#ad3b98}.intelradio{color:#027d02}.wyradio{color:#fe9b24}.pmcradio{color:#4dc5ce}.vairadio{color:#e3580e}.rmcradio{color:#e3580e}.cmbradio{color:#1b748c}.clfradio{color:#8e83ca}.alpharadio{color:#828cff}.bravoradio{color:#c68610}.charlieradio{color:#a5a}.deltaradio{color:#007fcf}.echoradio{color:#3eb489}.medium{font-size:110%}.big{font-size:115%}.large{font-size:125%}.extra_large{font-size:130%}.huge{font-size:150%}.underline{text-decoration:underline}.orange{color:#eca100}.normal{font-style:normal}.attack{color:#ff3838}.moderate{color:#c00}.disarm{color:#900}.passive{color:#600}.helpful{color:#368f31}.scanner{color:#ff3838}.scannerb{color:#ff3838;font-weight:bold}.scannerburn{color:orange}.scannerburnb{color:orange;font-weight:bold}.rose{color:#ff5050}.debuginfo{color:#493d26;font-style:italic}.xenonotice{color:#51a16c}.xenoboldnotice{color:#51a16c;font-style:italic}.xenowarning{color:#51a16c;font-style:italic}.xenominorwarning{color:#51a16c;font-weight:bold;font-style:italic}.xenodanger{color:#51a16c;font-weight:bold}.avoidharm{color:#72a0e5;font-weight:bold}.highdanger{color:#ff3838;font-weight:bold;font-size:140%}.xenohighdanger{color:#51a16c;font-weight:bold;font-size:140%}.xenoannounce{color:#65c585;font-family:book-antiqua;font-weight:bold;font-size:140%}.yautjabold{color:purple;font-weight:bold}.yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.objectivebig{font-weight:bold;font-size:130%}.objectivegreen{color:lime}.objectivered{color:red}.objectivesuccess{color:lime;font-weight:bold;font-size:110%}.objectivefail{color:red;font-weight:bold;font-size:110%}.xenotalk,.xeno{color:#c048c0;font-style:italic}.xenoleader{color:#996e99;font-style:italic;font-size:125%}.xenoqueen{color:#996e99;font-style:italic;font-weight:bold;font-size:125%}.newscaster{color:maroon}.role_header{color:#e92d2d;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.role_body{color:#3a3ae9;display:block;text-align:center;font-size:125%}.round_header{color:#e92d2d;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.round_body{color:#c5c5c5;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.announce_header{color:#cecece;font-weight:bold;font-size:150%}.announce_header_blue{color:#7575f3;font-weight:bold;font-size:150%}.announce_header_admin{color:#7575f3;font-weight:bold;font-size:150%}.announce_body{color:#e92d2d;font-weight:normal;font-size:125%}.centerbold{display:block;text-align:center;font-weight:bold}.mod{color:#917455;font-weight:bold}.modooc{color:#184880;font-weight:bold}.adminmod{color:#7c440c;font-weight:bold}.mentorsay{color:#d4af57;font-weight:bold}.mentorhelp{color:#090;font-weight:bold}.mentorbody{color:#da6200;font-weight:bold}.mentorstaff{color:#b5850d;font-weight:bold}.staffsay{color:#b5850d;font-weight:bold}.tajaran{color:#803b56}.tajaran_signlang{color:#941c1c}.skrell{color:#00ced1}.soghun{color:#228b22}.changeling{color:purple}.vox{color:#a0a}.monkey{color:#966c47}.german{color:#858f1e;font-family:"Times New Roman",Times,serif}.spanish{color:#cf982b}.japanese{color:#940927}.chinese{color:#fe1919}.zombie{color:#2dacb1;font-style:italic}.rough{font-family:trebuchet-ms,cursive,sans-serif}.commando{color:#fe9b24;font-style:bold}.say_quote{font-family:Georgia,Verdana,sans-serif}.admin .message{color:#314cad}.admin .prefix{font-weight:bolder}.pm{font-size:110%}.deadsay{color:#8b4dff}.retro_translator{font-weight:bold}.yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.examine_block{background:#1b1c1e;border:1px solid #a4bad6;margin:.5em;padding:.5em .75em}.examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.tooltip{font-style:italic;border-bottom:1px dashed #fff}
+.theme-light .color-black{color:#000 !important}.theme-light .color-white{color:#e6e6e6 !important}.theme-light .color-red{color:#c82121 !important}.theme-light .color-orange{color:#e6630d !important}.theme-light .color-yellow{color:#e5c304 !important}.theme-light .color-olive{color:#a3b816 !important}.theme-light .color-green{color:#1d9f3b !important}.theme-light .color-teal{color:#00a39c !important}.theme-light .color-blue{color:#1e78bb !important}.theme-light .color-dark-blue{color:#004274 !important}.theme-light .color-violet{color:#5a30b5 !important}.theme-light .color-purple{color:#932eb4 !important}.theme-light .color-pink{color:#db228a !important}.theme-light .color-brown{color:#955d39 !important}.theme-light .color-grey{color:#e6e6e6 !important}.theme-light .color-light-grey{color:#999 !important}.theme-light .color-good{color:#529923 !important}.theme-light .color-average{color:#da810e !important}.theme-light .color-bad{color:#c82121 !important}.theme-light .color-label{color:#353535 !important}.theme-light .color-xeno{color:#4a3253 !important}.theme-light .color-bg-black{background-color:#000 !important}.theme-light .color-bg-white{background-color:#bfbfbf !important}.theme-light .color-bg-red{background-color:#a61c1c !important}.theme-light .color-bg-orange{background-color:#c0530b !important}.theme-light .color-bg-yellow{background-color:#bfa303 !important}.theme-light .color-bg-olive{background-color:#889912 !important}.theme-light .color-bg-green{background-color:#188532 !important}.theme-light .color-bg-teal{background-color:#008882 !important}.theme-light .color-bg-blue{background-color:#19649c !important}.theme-light .color-bg-dark-blue{background-color:#003761 !important}.theme-light .color-bg-violet{background-color:#4b2897 !important}.theme-light .color-bg-purple{background-color:#7a2696 !important}.theme-light .color-bg-pink{background-color:#b61d73 !important}.theme-light .color-bg-brown{background-color:#7c4d2f !important}.theme-light .color-bg-grey{background-color:#bfbfbf !important}.theme-light .color-bg-light-grey{background-color:gray !important}.theme-light .color-bg-good{background-color:#44801d !important}.theme-light .color-bg-average{background-color:#b56b0b !important}.theme-light .color-bg-bad{background-color:#a61c1c !important}.theme-light .color-bg-label{background-color:#2c2c2c !important}.theme-light .color-bg-xeno{background-color:#3e2945 !important}.theme-light .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#fff}.theme-light .Tabs--fill{height:100%}.theme-light .Section .Tabs{background-color:transparent}.theme-light .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-light .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-light .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-light .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-light .Tabs--horizontal:last-child{margin-bottom:0}.theme-light .Tabs__Tab{flex-grow:0}.theme-light .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-light .Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(0,0,0,.5);min-height:2.25em;min-width:4em}.theme-light .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.theme-light .Tab--selected{background-color:rgba(255,255,255,.125);color:#404040}.theme-light .Tab__text{flex-grow:1;margin:0 .5em}.theme-light .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-light .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-light .Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-light .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #000}.theme-light .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-light .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #000}.theme-light .Tab--selected.Tab--color--black{color:#404040}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#000}.theme-light .Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#000}.theme-light .Tab--selected.Tab--color--white{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--red{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--orange{color:#f48942}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#e6630d}.theme-light .Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#e6630d}.theme-light .Tab--selected.Tab--color--yellow{color:#fcdd33}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#e5c304}.theme-light .Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#e5c304}.theme-light .Tab--selected.Tab--color--olive{color:#d0e732}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#a3b816}.theme-light .Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#a3b816}.theme-light .Tab--selected.Tab--color--green{color:#33da5a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#1d9f3b}.theme-light .Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#1d9f3b}.theme-light .Tab--selected.Tab--color--teal{color:#00faef}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00a39c}.theme-light .Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00a39c}.theme-light .Tab--selected.Tab--color--blue{color:#419ce1}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#1e78bb}.theme-light .Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#1e78bb}.theme-light .Tab--selected.Tab--color--dark-blue{color:#0079d7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#004274}.theme-light .Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#004274}.theme-light .Tab--selected.Tab--color--violet{color:#7f58d3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#5a30b5}.theme-light .Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#5a30b5}.theme-light .Tab--selected.Tab--color--purple{color:#b455d4}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#932eb4}.theme-light .Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#932eb4}.theme-light .Tab--selected.Tab--color--pink{color:#e558a7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#db228a}.theme-light .Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#db228a}.theme-light .Tab--selected.Tab--color--brown{color:#c0825a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#955d39}.theme-light .Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#955d39}.theme-light .Tab--selected.Tab--color--grey{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--light-grey{color:#b3b3b3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#999}.theme-light .Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#999}.theme-light .Tab--selected.Tab--color--good{color:#77d23b}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#529923}.theme-light .Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#529923}.theme-light .Tab--selected.Tab--color--average{color:#f3a23a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#da810e}.theme-light .Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#da810e}.theme-light .Tab--selected.Tab--color--bad{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--label{color:#686868}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#353535}.theme-light .Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#353535}.theme-light .Tab--selected.Tab--color--xeno{color:#7e558e}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#4a3253}.theme-light .Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#4a3253}.theme-light .Section{position:relative;margin-bottom:.5em;background-color:#fff;background-color:#fff;box-sizing:border-box}.theme-light .Section:last-child{margin-bottom:0}.theme-light .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-light .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-light .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-light .Section__rest{position:relative}.theme-light .Section__content{padding:.66em .5em}.theme-light .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-light .Section--fill{display:flex;flex-direction:column;height:100%}.theme-light .Section--fill>.Section__rest{flex-grow:1}.theme-light .Section--fill>.Section__rest>.Section__content{height:100%}.theme-light .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-light .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-light .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-light .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.theme-light .Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.theme-light .Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.theme-light .Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.theme-light .Section .Section:first-child{margin-top:-0.5em}.theme-light .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-light .Section .Section .Section .Section__titleText{font-size:1em}.theme-light .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-light .Button:last-child{margin-right:0;margin-bottom:0}.theme-light .Button .fa,.theme-light .Button .fas,.theme-light .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-light .Button--hasContent .fa,.theme-light .Button--hasContent .fas,.theme-light .Button--hasContent .far{margin-right:.25em}.theme-light .Button--hasContent.Button--iconPosition--right .fa,.theme-light .Button--hasContent.Button--iconPosition--right .fas,.theme-light .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-light .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-light .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-light .Button--circular{border-radius:50%}.theme-light .Button--compact{padding:0 .25em;line-height:1.333em}.theme-light .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-light .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--black:hover,.theme-light .Button--color--black:focus{background-color:#131313;color:#fff}.theme-light .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--white:hover,.theme-light .Button--color--white:focus{background-color:#efefef;color:#000}.theme-light .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--red:hover,.theme-light .Button--color--red:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#c0530b;color:#fff}.theme-light .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--orange:hover,.theme-light .Button--color--orange:focus{background-color:#ea7426;color:#fff}.theme-light .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#bfa303;color:#fff}.theme-light .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--yellow:hover,.theme-light .Button--color--yellow:focus{background-color:#efce17;color:#fff}.theme-light .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#889912;color:#fff}.theme-light .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--olive:hover,.theme-light .Button--color--olive:focus{background-color:#afc328;color:#fff}.theme-light .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#188532;color:#fff}.theme-light .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--green:hover,.theme-light .Button--color--green:focus{background-color:#2fac4c;color:#fff}.theme-light .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#008882;color:#fff}.theme-light .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--teal:hover,.theme-light .Button--color--teal:focus{background-color:#13afa9;color:#fff}.theme-light .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#19649c;color:#fff}.theme-light .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--blue:hover,.theme-light .Button--color--blue:focus{background-color:#3086c7;color:#fff}.theme-light .Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003761;color:#fff}.theme-light .Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--dark-blue:hover,.theme-light .Button--color--dark-blue:focus{background-color:#135283;color:#fff}.theme-light .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#4b2897;color:#fff}.theme-light .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--violet:hover,.theme-light .Button--color--violet:focus{background-color:#6a41c1;color:#fff}.theme-light .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#7a2696;color:#fff}.theme-light .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--purple:hover,.theme-light .Button--color--purple:focus{background-color:#a03fc0;color:#fff}.theme-light .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#b61d73;color:#fff}.theme-light .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--pink:hover,.theme-light .Button--color--pink:focus{background-color:#da3f96;color:#fff}.theme-light .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#7c4d2f;color:#fff}.theme-light .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--brown:hover,.theme-light .Button--color--brown:focus{background-color:#a26c49;color:#fff}.theme-light .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--grey:hover,.theme-light .Button--color--grey:focus{background-color:#efefef;color:#000}.theme-light .Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:gray;color:#fff}.theme-light .Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--light-grey:hover,.theme-light .Button--color--light-grey:focus{background-color:#a6a6a6;color:#fff}.theme-light .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#44801d;color:#fff}.theme-light .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--good:hover,.theme-light .Button--color--good:focus{background-color:#62a635;color:#fff}.theme-light .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#b56b0b;color:#fff}.theme-light .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--average:hover,.theme-light .Button--color--average:focus{background-color:#e48f20;color:#fff}.theme-light .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--bad:hover,.theme-light .Button--color--bad:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#2c2c2c;color:#fff}.theme-light .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--label:hover,.theme-light .Button--color--label:focus{background-color:#464646;color:#fff}.theme-light .Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#3e2945;color:#fff}.theme-light .Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--xeno:hover,.theme-light .Button--color--xeno:focus{background-color:#5a4363;color:#fff}.theme-light .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#bbb;color:#000}.theme-light .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--default:hover,.theme-light .Button--color--default:focus{background-color:#eaeaea;color:#000}.theme-light .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-light .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--caution:hover,.theme-light .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-light .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-light .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--danger:hover,.theme-light .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-light .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#eee;color:#000;background-color:rgba(238,238,238,0);color:rgba(0,0,0,.5)}.theme-light .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--transparent:hover,.theme-light .Button--color--transparent:focus{background-color:#fcfcfc;color:#000}.theme-light .Button--disabled{background-color:#363636 !important}.theme-light .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0668b8;color:#fff}.theme-light .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--selected:hover,.theme-light .Button--selected:focus{background-color:#1a8be7;color:#fff}.theme-light .Button--flex{display:inline-flex;flex-direction:column}.theme-light .Button--flex--fluid{width:100%}.theme-light .Button--verticalAlignContent--top{justify-content:flex-start}.theme-light .Button--verticalAlignContent--middle{justify-content:center}.theme-light .Button--verticalAlignContent--bottom{justify-content:flex-end}.theme-light .Button__content{display:block;align-self:stretch}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#353535;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-light .NumberInput--fluid{display:block}.theme-light .NumberInput__content{margin-left:.5em}.theme-light .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-light .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #353535;background-color:#353535}.theme-light .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#fff;color:#000;text-align:right}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .TextArea{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;background-color:#fff;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.theme-light .TextArea--fluid{display:block;width:auto;height:auto}.theme-light .TextArea--noborder{border:0px}.theme-light .TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.theme-light .TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.theme-light .TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.theme-light .Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.theme-light .Knob:after{content:".";color:transparent;line-height:2.5em}.theme-light .Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.theme-light .Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.theme-light .Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.theme-light .Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.theme-light .Knob__ringTrackPivot{transform:rotateZ(135deg)}.theme-light .Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.theme-light .Knob__ringFillPivot{transform:rotateZ(135deg)}.theme-light .Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.theme-light .Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.theme-light .Knob--color--black .Knob__ringFill{stroke:#000}.theme-light .Knob--color--white .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--red .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--orange .Knob__ringFill{stroke:#e6630d}.theme-light .Knob--color--yellow .Knob__ringFill{stroke:#e5c304}.theme-light .Knob--color--olive .Knob__ringFill{stroke:#a3b816}.theme-light .Knob--color--green .Knob__ringFill{stroke:#1d9f3b}.theme-light .Knob--color--teal .Knob__ringFill{stroke:#00a39c}.theme-light .Knob--color--blue .Knob__ringFill{stroke:#1e78bb}.theme-light .Knob--color--dark-blue .Knob__ringFill{stroke:#004274}.theme-light .Knob--color--violet .Knob__ringFill{stroke:#5a30b5}.theme-light .Knob--color--purple .Knob__ringFill{stroke:#932eb4}.theme-light .Knob--color--pink .Knob__ringFill{stroke:#db228a}.theme-light .Knob--color--brown .Knob__ringFill{stroke:#955d39}.theme-light .Knob--color--grey .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--light-grey .Knob__ringFill{stroke:#999}.theme-light .Knob--color--good .Knob__ringFill{stroke:#529923}.theme-light .Knob--color--average .Knob__ringFill{stroke:#da810e}.theme-light .Knob--color--bad .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--label .Knob__ringFill{stroke:#353535}.theme-light .Knob--color--xeno .Knob__ringFill{stroke:#4a3253}.theme-light .Slider{cursor:e-resize}.theme-light .Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.theme-light .Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #000}.theme-light .Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #000}.theme-light .Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.theme-light .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-light .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-light .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-light .ProgressBar--color--default{border:.0833333333em solid #bfbfbf}.theme-light .ProgressBar--color--default .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--black{border-color:#000 !important}.theme-light .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-light .ProgressBar--color--white{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--white .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--red{border-color:#a61c1c !important}.theme-light .ProgressBar--color--red .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--orange{border-color:#c0530b !important}.theme-light .ProgressBar--color--orange .ProgressBar__fill{background-color:#c0530b}.theme-light .ProgressBar--color--yellow{border-color:#bfa303 !important}.theme-light .ProgressBar--color--yellow .ProgressBar__fill{background-color:#bfa303}.theme-light .ProgressBar--color--olive{border-color:#889912 !important}.theme-light .ProgressBar--color--olive .ProgressBar__fill{background-color:#889912}.theme-light .ProgressBar--color--green{border-color:#188532 !important}.theme-light .ProgressBar--color--green .ProgressBar__fill{background-color:#188532}.theme-light .ProgressBar--color--teal{border-color:#008882 !important}.theme-light .ProgressBar--color--teal .ProgressBar__fill{background-color:#008882}.theme-light .ProgressBar--color--blue{border-color:#19649c !important}.theme-light .ProgressBar--color--blue .ProgressBar__fill{background-color:#19649c}.theme-light .ProgressBar--color--dark-blue{border-color:#003761 !important}.theme-light .ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003761}.theme-light .ProgressBar--color--violet{border-color:#4b2897 !important}.theme-light .ProgressBar--color--violet .ProgressBar__fill{background-color:#4b2897}.theme-light .ProgressBar--color--purple{border-color:#7a2696 !important}.theme-light .ProgressBar--color--purple .ProgressBar__fill{background-color:#7a2696}.theme-light .ProgressBar--color--pink{border-color:#b61d73 !important}.theme-light .ProgressBar--color--pink .ProgressBar__fill{background-color:#b61d73}.theme-light .ProgressBar--color--brown{border-color:#7c4d2f !important}.theme-light .ProgressBar--color--brown .ProgressBar__fill{background-color:#7c4d2f}.theme-light .ProgressBar--color--grey{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--grey .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--light-grey{border-color:gray !important}.theme-light .ProgressBar--color--light-grey .ProgressBar__fill{background-color:gray}.theme-light .ProgressBar--color--good{border-color:#44801d !important}.theme-light .ProgressBar--color--good .ProgressBar__fill{background-color:#44801d}.theme-light .ProgressBar--color--average{border-color:#b56b0b !important}.theme-light .ProgressBar--color--average .ProgressBar__fill{background-color:#b56b0b}.theme-light .ProgressBar--color--bad{border-color:#a61c1c !important}.theme-light .ProgressBar--color--bad .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--label{border-color:#2c2c2c !important}.theme-light .ProgressBar--color--label .ProgressBar__fill{background-color:#2c2c2c}.theme-light .ProgressBar--color--xeno{border-color:#3e2945 !important}.theme-light .ProgressBar--color--xeno .ProgressBar__fill{background-color:#3e2945}.theme-light .Chat{color:#000}.theme-light .Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.theme-light .Chat__badge:before{content:"x"}.theme-light .Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.theme-light .Chat__scrollButton{position:fixed;right:2em;bottom:1em}.theme-light .Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.theme-light .Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#fff}.theme-light .Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.theme-light .Chat__highlight{color:#000}.theme-light .Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.theme-light .ChatMessage{word-wrap:break-word}.theme-light .ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.theme-light .ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.theme-light .Layout,.theme-light .Layout *{scrollbar-base-color:#f2f2f2;scrollbar-face-color:#d6d6d6;scrollbar-3dlight-color:#eee;scrollbar-highlight-color:#eee;scrollbar-track-color:#f2f2f2;scrollbar-arrow-color:#777;scrollbar-shadow-color:#d6d6d6}.theme-light .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-light .Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.theme-light .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#eee;background-image:linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%)}.theme-light .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-light .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-light .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-light .Window__contentPadding:after{height:0}.theme-light .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-light .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(252,252,252,.25);pointer-events:none}.theme-light .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-light .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-light .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-light .TitleBar{background-color:#eee;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-light .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#eee;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-light .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-light .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-light .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-light .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-light .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-light .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-light .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-light html,.theme-light body{padding:0;margin:0;height:100%;color:#000}.theme-light body{background:#fff;font-family:Verdana,sans-serif;font-size:13px;line-height:1.2;overflow-x:hidden;overflow-y:scroll;word-wrap:break-word}.theme-light em{font-style:normal;font-weight:bold}.theme-light img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.theme-light img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}.theme-light a{color:blue}.theme-light a.visited{color:#f0f}.theme-light a:visited{color:#f0f}.theme-light a.popt{text-decoration:none}.theme-light .popup{position:fixed;top:50%;left:50%;background:#ddd}.theme-light .popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.theme-light .popup .close:hover{background:#999}.theme-light .popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.theme-light .popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.theme-light .popup input[type=text]:hover,.theme-light .popup input[type=text]:active,.theme-light .popup input[type=text]:focus{border-color:green}.theme-light .popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.theme-light .popup input[type=submit]:hover,.theme-light .popup input[type=submit]:focus,.theme-light .popup input[type=submit]:active{background:#aaa;cursor:pointer}.theme-light .changeFont{padding:10px}.theme-light .changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.theme-light .changeFont a:hover{background:#ccc}.theme-light .highlightPopup{padding:10px;text-align:center}.theme-light .highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.theme-light .highlightPopup input.highlightColor{background-color:#ff0}.theme-light .highlightPopup input.highlightTermSubmit{margin-top:5px}.theme-light .contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.theme-light .contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.theme-light .contextMenu a:hover{background-color:#ccc}.theme-light .filterMessages{padding:5px}.theme-light .filterMessages div{padding:2px 0}.theme-light .icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.theme-light .motd{color:#638500;font-family:Verdana,sans-serif;white-space:normal}.theme-light .motd h1,.theme-light .motd h2,.theme-light .motd h3,.theme-light .motd h4,.theme-light .motd h5,.theme-light .motd h6{color:#638500;text-decoration:underline}.theme-light .motd a,.theme-light .motd a:link,.theme-light .motd a:visited,.theme-light .motd a:active,.theme-light .motd a:hover{color:#638500}.theme-light .bold,.theme-light .name,.theme-light .prefix,.theme-light .ooc,.theme-light .looc,.theme-light .adminooc,.theme-light .admin,.theme-light .medal,.theme-light .yell{font-weight:bold}.theme-light .italic,.theme-light .italics{font-style:italic}.theme-light .highlight{background:#ff0}.theme-light h1,.theme-light h2,.theme-light h3,.theme-light h4,.theme-light h5,.theme-light h6{color:blue;font-family:Georgia,Verdana,sans-serif}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light em{font-style:normal;font-weight:bold}.theme-light .ooc{font-weight:bold}.theme-light .adminobserverooc{color:#09c;font-weight:bold}.theme-light .adminooc{color:#700038;font-weight:bold}.theme-light .adminsay{color:#ff4500;font-weight:bold}.theme-light .admin{color:#4473ff;font-weight:bold}.theme-light .name{font-weight:bold}.theme-light .deadsay{color:#5c00e6}.theme-light .binarysay{color:#20c20e;background-color:#000;display:block}.theme-light .binarysay a{color:lime}.theme-light .binarysay a:active,.theme-light .binarysay a:visited{color:#8f8}.theme-light .radio{color:green}.theme-light .sciradio{color:#939}.theme-light .comradio{color:#948f02}.theme-light .secradio{color:#a30000}.theme-light .medradio{color:#337296}.theme-light .engradio{color:#fb5613}.theme-light .sentryradio{color:#844300}.theme-light .suppradio{color:#a8732b}.theme-light .servradio{color:#6eaa2c}.theme-light .syndradio{color:#6d3f40}.theme-light .gangradio{color:#ac2ea1}.theme-light .centcomradio{color:#686868}.theme-light .aiprivradio{color:#f0f}.theme-light .redteamradio{color:red}.theme-light .blueteamradio{color:blue}.theme-light .greenteamradio{color:lime}.theme-light .yellowteamradio{color:#d1ba22}.theme-light .yell{font-weight:bold}.theme-light .alert{color:red}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light .userdanger{color:red;font-weight:bold;font-size:185%}.theme-light .bolddanger{color:red;font-weight:bold}.theme-light .danger{color:red}.theme-light .tinydanger{color:red;font-size:85%}.theme-light .smalldanger{color:red;font-size:90%}.theme-light .warning{color:red;font-style:italic}.theme-light .alertwarning{color:red;font-weight:bold}.theme-light .boldwarning{color:red;font-style:italic;font-weight:bold}.theme-light .announce{color:#228b22;font-weight:bold}.theme-light .boldannounce{color:red;font-weight:bold}.theme-light .minorannounce{font-weight:bold;font-size:185%}.theme-light .greenannounce{color:lime;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .info{color:#00c}.theme-light .notice{color:#009}.theme-light .staff_ic{color:#009}.theme-light .tinynotice{color:#009;font-size:85%}.theme-light .tinynoticeital{color:#009;font-style:italic;font-size:85%}.theme-light .smallnotice{color:#009;font-size:90%}.theme-light .smallnoticeital{color:#009;font-style:italic;font-size:90%}.theme-light .boldnotice{color:#009;font-weight:bold}.theme-light .hear{color:#009;font-style:italic}.theme-light .adminnotice{color:blue}.theme-light .adminhelp{color:red;font-weight:bold}.theme-light .unconscious{color:blue;font-weight:bold}.theme-light .suicide{color:#ff5050;font-style:italic}.theme-light .green{color:#03ff39}.theme-light .grey{color:#838383}.theme-light .red{color:red}.theme-light .blue{color:blue}.theme-light .nicegreen{color:#14a833}.theme-light .boldnicegreen{color:#14a833;font-weight:bold}.theme-light .cult{color:#973e3b}.theme-light .cultitalic{color:#973e3b;font-style:italic}.theme-light .cultbold{color:#973e3b;font-style:italic;font-weight:bold}.theme-light .cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .narsie{color:#973e3b;font-weight:bold;font-size:925%}.theme-light .narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.theme-light .colossus{color:#7f282a;font-size:310%}.theme-light .hierophant{color:#609;font-weight:bold;font-style:italic}.theme-light .hierophant_warning{color:#609;font-style:italic}.theme-light .purple{color:#5e2d79}.theme-light .holoparasite{color:#35333a}.theme-light .revennotice{color:#1d2953}.theme-light .revenboldnotice{color:#1d2953;font-weight:bold}.theme-light .revenbignotice{color:#1d2953;font-weight:bold;font-size:185%}.theme-light .revenminor{color:#823abb}.theme-light .revenwarning{color:#760fbb;font-style:italic}.theme-light .revendanger{color:#760fbb;font-weight:bold;font-size:185%}.theme-light .deconversion_message{color:#5000a0;font-size:185%;font-style:italic}.theme-light .ghostalert{color:#5c00e6;font-style:italic;font-weight:bold}.theme-light .alien{color:#543354}.theme-light .noticealien{color:#00c000}.theme-light .alertalien{color:#00c000;font-weight:bold}.theme-light .changeling{color:purple;font-style:italic}.theme-light .alertsyndie{color:red;font-size:185%;font-weight:bold}.theme-light .spider{color:#4d004d;font-weight:bold;font-size:185%}.theme-light .interface{color:#303}.theme-light .sans{font-family:"Comic Sans MS",cursive,sans-serif}.theme-light .papyrus{font-family:"Papyrus",cursive,sans-serif}.theme-light .robot{font-family:"Courier New",cursive,sans-serif}.theme-light .tape_recorder{color:maroon;font-family:"Courier New",cursive,sans-serif}.theme-light .command_headset{font-weight:bold;font-size:160%}.theme-light .small{font-size:60%}.theme-light .big{font-size:185%}.theme-light .reallybig{font-size:245%}.theme-light .extremelybig{font-size:310%}.theme-light .greentext{color:lime;font-size:185%}.theme-light .redtext{color:red;font-size:185%}.theme-light .clown{color:#ff69bf;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.theme-light .singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.theme-light .his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.theme-light .hypnophrase{color:#0d0d0d;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#0d0d0d}25%{color:#410194}50%{color:#7f17d8}75%{color:#410194}100%{color:#3bb5d3}}.theme-light .phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#0d0d0d}50%{color:#d00}100%{color:#0d0d0d}}.theme-light .icon{height:1em;width:auto}.theme-light .bigicon{font-size:2.5em}.theme-light .memo{color:#638500;text-align:center}.theme-light .memoedit{text-align:center;font-size:125%}.theme-light .abductor{color:purple;font-style:italic}.theme-light .mind_control{color:#a00d6f;font-size:100%;font-weight:bold;font-style:italic}.theme-light .slime{color:#00ced1}.theme-light .drone{color:#848482}.theme-light .monkey{color:#975032}.theme-light .swarmer{color:#2c75ff}.theme-light .resonate{color:#298f85}.theme-light .monkeyhive{color:#774704}.theme-light .monkeylead{color:#774704;font-size:80%}.theme-light .connectionClosed,.theme-light .fatalError{background:red;color:#fff;padding:5px}.theme-light .connectionClosed.restored{background:green}.theme-light .internal.boldnshit{color:blue;font-weight:bold}.theme-light .text-normal{font-weight:normal;font-style:normal}.theme-light .hidden{display:none;visibility:hidden}.theme-light .ml-1{margin-left:1em}.theme-light .ml-2{margin-left:2em}.theme-light .ml-3{margin-left:3em}.theme-light .xooc{color:#6c0094;font-weight:bold;font-size:140%}.theme-light .mooc{color:#090;font-weight:bold;font-size:140%}.theme-light .yooc{color:#999600;font-weight:bold;font-size:140%}.theme-light .headminsay{color:#5a0a7f;font-weight:bold}.theme-light .radio{color:#4e4e4e}.theme-light .deptradio{color:#939}.theme-light .comradio{color:#004080}.theme-light .centradio{color:#5c5c8a}.theme-light .cryoradio{color:#554e3f}.theme-light .hcradio{color:#318779}.theme-light .pvstradio{color:#9b0612}.theme-light .airadio{color:#f0f}.theme-light .secradio{color:#a30000}.theme-light .engradio{color:#a66300}.theme-light .sentryradio{color:#844300}.theme-light .medradio{color:#008160}.theme-light .supradio{color:#5f4519}.theme-light .jtacradio{color:#702963}.theme-light .intelradio{color:#027d02}.theme-light .wyradio{color:#fe9b24}.theme-light .pmcradio{color:#136957}.theme-light .vairadio{color:#943d0a}.theme-light .cmbradio{color:#1b748c}.theme-light .clfradio{color:#6f679c}.theme-light .alpharadio{color:#828cff}.theme-light .bravoradio{color:#c68610}.theme-light .charlieradio{color:#a5a}.theme-light .deltaradio{color:#007fcf}.theme-light .echoradio{color:#3a7e65}.theme-light .medium{font-size:110%}.theme-light .big{font-size:115%}.theme-light .large{font-size:125%}.theme-light .extra_large{font-size:130%}.theme-light .huge{font-size:150%}.theme-light .underline{text-decoration:underline}.theme-light .orange{color:#eca100}.theme-light .normal{font-style:normal}.theme-light .attack{color:red}.theme-light .moderate{color:#c00}.theme-light .disarm{color:#900}.theme-light .passive{color:#600}.theme-light .helpful{color:#368f31}.theme-light .scanner{color:red}.theme-light .scannerb{color:red;font-weight:bold}.theme-light .scannerburn{color:orange}.theme-light .scannerburnb{color:orange;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .debuginfo{color:#493d26;font-style:italic}.theme-light .xenonotice{color:#2a623d}.theme-light .xenoboldnotice{color:#2a623d;font-style:italic}.theme-light .xenowarning{color:#2a623d;font-style:italic}.theme-light .xenominorwarning{color:#2a623d;font-weight:bold;font-style:italic}.theme-light .xenodanger{color:#2a623d;font-weight:bold}.theme-light .avoidharm{color:#72a0e5;font-weight:bold}.theme-light .highdanger{color:red;font-weight:bold;font-size:140%}.theme-light .xenohighdanger{color:#2a623d;font-weight:bold;font-size:140%}.theme-light .xenoannounce{color:#1a472a;font-family:book-antiqua;font-weight:bold;font-size:140%}.theme-light .yautjabold{color:purple;font-weight:bold}.theme-light .yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.theme-light .objectivebig{font-weight:bold;font-size:130%}.theme-light .objectivegreen{color:lime}.theme-light .objectivered{color:red}.theme-light .objectivesuccess{color:lime;font-weight:bold;font-size:110%}.theme-light .objectivefail{color:red;font-weight:bold;font-size:110%}.theme-light .xenotalk,.theme-light .xeno{color:#900090;font-style:italic}.theme-light .xenoleader{color:#730d73;font-style:italic;font-size:125%}.theme-light .xenoqueen{color:#730d73;font-style:italic;font-weight:bold;font-size:125%}.theme-light .newscaster{color:maroon}.theme-light .role_header{color:#db0000;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.theme-light .role_body{color:#009;display:block;text-align:center;font-size:125%}.theme-light .round_header{color:#db0000;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.theme-light .round_body{color:#001427;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.theme-light .event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.theme-light .announce_header{color:#000;font-weight:bold;font-size:150%}.theme-light .announce_header_blue{color:#009;font-weight:bold;font-size:150%}.theme-light .announce_body{color:red;font-weight:normal;font-size:125%}.theme-light .centerbold{display:block;text-align:center;font-weight:bold}.theme-light .mod{color:#735638;font-weight:bold}.theme-light .modooc{color:#184880;font-weight:bold}.theme-light .adminmod{color:#402a14;font-weight:bold}.theme-light .mentorsay{color:#b38c32;font-weight:bold}.theme-light .mentorhelp{color:#007e00;font-weight:bold}.theme-light .mentorbody{color:#da6200;font-weight:bold}.theme-light .mentorstaff{color:#876101;font-weight:bold}.theme-light .staffsay{color:#876101;font-weight:bold}.theme-light .tajaran{color:#803b56}.theme-light .tajaran_signlang{color:#941c1c}.theme-light .skrell{color:#00ced1}.theme-light .soghun{color:#228b22}.theme-light .changeling{color:purple}.theme-light .vox{color:#a0a}.theme-light .monkey{color:#966c47}.theme-light .german{color:#858f1e;font-family:"Times New Roman",Times,serif}.theme-light .spanish{color:#cf982b}.theme-light .japanese{color:#940927}.theme-light .chinese{color:#fe1919}.theme-light .zombie{color:#216163;font-style:italic}.theme-light .commando{color:#fe9b24;font-style:bold}.theme-light .rough{font-family:trebuchet-ms,cursive,sans-serif}.theme-light .say_quote{font-family:Georgia,Verdana,sans-serif}.theme-light .admin .message{color:#314cad}.theme-light .admin .prefix{font-weight:bolder}.theme-light .pm{font-size:110%}.theme-light .retro_translator{font-weight:bold}.theme-light .yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.theme-light .examine_block{background:#f2f7fa;border:1px solid #111a27;margin:.5em;padding:.5em .75em}.theme-light .examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.theme-light .tooltip{font-style:italic;border-bottom:1px dashed #000}
diff --git a/tools/UpdatePaths/Scripts/phone-component-switch.txt b/tools/UpdatePaths/Scripts/phone-component-switch.txt
new file mode 100644
index 0000000000..0697ab15c9
--- /dev/null
+++ b/tools/UpdatePaths/Scripts/phone-component-switch.txt
@@ -0,0 +1,13 @@
+/obj/item/phone: /obj/item/handset{@OLD}
+/obj/structure/transmitter : /obj/structure/phone_base{@OLD}
+/obj/structure/transmitter/rotary : /obj/structure/phone_base/rotary{@OLD}
+/obj/structure/transmitter/rotary/no_dnd : /obj/structure/phone_base/rotary/no_dnd{@OLD}
+/obj/structure/transmitter/touchtone : /obj/structure/phone_base/touchtone{@OLD}
+/obj/structure/transmitter/colony_net : /obj/structure/phone_base/colony_net{@OLD}
+/obj/structure/transmitter/colony_net/rotary : /obj/structure/phone_base/colony_net/rotary{@OLD}
+/obj/structure/transmitter/upp_net : /obj/structure/phone_base/upp_net{@OLD}
+/obj/structure/transmitter/upp_net/rotary : /obj/structure/phone_base/upp_net/rotary{@OLD}
+/obj/structure/transmitter/clf_net : /obj/structure/phone_base/clf_net{@OLD}
+/obj/structure/transmitter/clf_net/rotary : /obj/structure/phone_base/clf_net/rotary{@OLD}
+/obj/structure/transmitter/wy_net : /obj/structure/phone_base/wy_net{@OLD}
+/obj/structure/transmitter/wy_net/rotary : /obj/structure/phone_base/wy_net/rotary{@OLD}
diff --git a/tools/ci/download_od.sh b/tools/ci/download_od.sh
new file mode 100644
index 0000000000..024f93f928
--- /dev/null
+++ b/tools/ci/download_od.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+set -eo pipefail
+
+if [ -z "${OPENDREAM_VERSION+x}" ]; then
+ source dependencies.sh
+fi
+
+git clone https://github.com/OpenDreamProject/OpenDream.git ~/OpenDream
+cd ~/OpenDream
+git checkout tags/v${OPENDREAM_VERSION}
+git submodule update --init --recursive
diff --git a/tools/ci/run_od.sh b/tools/ci/run_od.sh
new file mode 100644
index 0000000000..3eeac59073
--- /dev/null
+++ b/tools/ci/run_od.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+set -eo pipefail
+
+dotnet ~/OpenDream/DMCompiler/bin/Release/net7.0/DMCompiler.dll --suppress-unimplemented colonialmarines.dme
diff --git a/tools/ci/setup_od.sh b/tools/ci/setup_od.sh
new file mode 100644
index 0000000000..6d2ec17068
--- /dev/null
+++ b/tools/ci/setup_od.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+set -eo pipefail
+
+cd ~/OpenDream
+
+dotnet restore
+dotnet build -c Release
diff --git a/tools/ci/validate_dme.py b/tools/ci/validate_dme.py
index 33066f72e7..5566648042 100644
--- a/tools/ci/validate_dme.py
+++ b/tools/ci/validate_dme.py
@@ -17,6 +17,9 @@
# Included by BSQL/includes.dm
r'code/__HELPERS/BSQL/**/*.dm',
+
+ # Included as part of OD lints
+ r'code/__pragmas.dm'
]
lines = []